Skip to content

Commit

Permalink
Merge pull request #3098 from OneCommunityGlobal/honglin-fix-projects…
Browse files Browse the repository at this point in the history
…-page-search-and-layout

Honglin fix css conflicts between Projects page and Auth components
  • Loading branch information
one-community authored Jan 31, 2025
2 parents d2e0e41 + d51f120 commit 260bcff
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: '14'

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: '14'

Expand All @@ -25,7 +25,7 @@ jobs:

- name: Upload test results
if: failure()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: test-results
path: test-results # Adjust the path to your test results if necessary
4 changes: 2 additions & 2 deletions src/components/LBDashboard/Auth/Auth.css
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
min-width: 250px;
}

.form-container {
.lb-auth-page .form-container {
background-color: white;
border: 1px solid #ccc;
border-radius: 8px;
Expand Down Expand Up @@ -68,7 +68,7 @@
min-width: 140px;
}

form {
.lb-auth-page form {
display: flex;
flex-direction: column;
width: 100%;
Expand Down
2 changes: 1 addition & 1 deletion src/components/LBDashboard/Auth/Login.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ function Login() {
};

return (
<div className="auth-page">
<div className="auth-page lb-auth-page">
<div className="logo-container">
<img src={logo} alt="One Community Logo" />
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/components/LBDashboard/Auth/Register.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ function Register() {
};

return (
<div className="auth-page">
<div className="auth-page lb-auth-page">
<div className="logo-container">
<img src={logo} alt="One Community Logo" />
</div>
Expand Down

0 comments on commit 260bcff

Please sign in to comment.