Skip to content

Commit 14709cc

Browse files
committed
style: Update background gradient for public profile and user profile pages
- Changed the background gradient from #667eea and #764ba2 to #0f172a and #111827 for a darker theme. - Ensured consistency in visual design across user interface components.
1 parent 3e3090d commit 14709cc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

components/publicProfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ export default function PublicProfile({ profileData, eloData }) {
9393
.public-profile-container {
9494
min-height: 100vh;
9595
width: 100%;
96-
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
96+
background: linear-gradient(135deg, #0f172a 0%, #111827 100%);
9797
background-attachment: fixed;
9898
padding: 20px;
9999
box-sizing: border-box;

pages/user.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ export default function UserProfilePage() {
137137
<style jsx>{`
138138
.user-profile-page {
139139
min-height: 100vh;
140-
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
140+
background: linear-gradient(135deg, #0f172a 0%, #111827 100%);
141141
background-attachment: fixed;
142142
}
143143

0 commit comments

Comments
 (0)