From d506cfa7f37fba92d7151e6607144b2b25eb43c0 Mon Sep 17 00:00:00 2001 From: honglinchen0524 Date: Thu, 30 Jan 2025 20:23:32 -0500 Subject: [PATCH 1/3] Fix projects page layout and search bar issue --- src/components/LBDashboard/Auth/Auth.css | 4 ++-- src/components/LBDashboard/Auth/Login.jsx | 2 +- src/components/LBDashboard/Auth/Register.jsx | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/LBDashboard/Auth/Auth.css b/src/components/LBDashboard/Auth/Auth.css index 487c75ff5f..386af92433 100644 --- a/src/components/LBDashboard/Auth/Auth.css +++ b/src/components/LBDashboard/Auth/Auth.css @@ -20,7 +20,7 @@ min-width: 250px; } - .form-container { + .lb-auth-page .form-container { background-color: white; border: 1px solid #ccc; border-radius: 8px; @@ -68,7 +68,7 @@ min-width: 140px; } - form { + .lb-auth-page form { display: flex; flex-direction: column; width: 100%; diff --git a/src/components/LBDashboard/Auth/Login.jsx b/src/components/LBDashboard/Auth/Login.jsx index 8a7dac29d4..272eff4e99 100644 --- a/src/components/LBDashboard/Auth/Login.jsx +++ b/src/components/LBDashboard/Auth/Login.jsx @@ -59,7 +59,7 @@ function Login() { }; return ( -
+
One Community Logo
diff --git a/src/components/LBDashboard/Auth/Register.jsx b/src/components/LBDashboard/Auth/Register.jsx index af72d76296..66d52b46b1 100644 --- a/src/components/LBDashboard/Auth/Register.jsx +++ b/src/components/LBDashboard/Auth/Register.jsx @@ -65,7 +65,7 @@ function Register() { }; return ( -
+
One Community Logo
From b18df9d9dc41601fc4c739fb6ae3c45b53a297d0 Mon Sep 17 00:00:00 2001 From: honglinchen0524 Date: Thu, 30 Jan 2025 21:15:01 -0500 Subject: [PATCH 2/3] git action update --- .github/workflows/lint.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 676369fd15..b880bcf7d3 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -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' From d51f12024f5eabcb335e3102c33748577a8fb588 Mon Sep 17 00:00:00 2001 From: honglinchen0524 Date: Thu, 30 Jan 2025 21:16:52 -0500 Subject: [PATCH 3/3] git update --- .github/workflows/test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3509ed2dbb..a426f3d1f7 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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' @@ -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