Skip to content

Commit 1ec2a1e

Browse files
committed
style: update guest icon and button styles for improved visual consistency; change background and border colors
1 parent 5220d60 commit 1ec2a1e

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/main.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -850,13 +850,13 @@ function showAuthScreen() {
850850
.guest-icon {
851851
width: 80px;
852852
height: 80px;
853-
background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
853+
background: #e74c3c;
854854
border-radius: 50%;
855855
display: flex;
856856
align-items: center;
857857
justify-content: center;
858858
margin: 0 auto 24px auto;
859-
box-shadow: 0 8px 25px rgba(245, 158, 11, 0.25);
859+
box-shadow: 0 8px 25px rgba(231, 76, 60, 0.25);
860860
}
861861
862862
.guest-icon i {
@@ -879,9 +879,9 @@ function showAuthScreen() {
879879
}
880880
881881
.guest-btn {
882-
background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
882+
background: #e74c3c;
883883
color: white;
884-
border-color: #f59e0b;
884+
border-color: #e74c3c;
885885
font-weight: 600;
886886
padding: 14px 24px;
887887
border-radius: 12px;
@@ -890,10 +890,10 @@ function showAuthScreen() {
890890
}
891891
892892
.guest-btn:hover {
893-
background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
894-
border-color: #d97706;
893+
background: #c0392b;
894+
border-color: #c0392b;
895895
transform: translateY(-2px);
896-
box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
896+
box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
897897
}
898898
899899
/* Mobile responsiveness */

0 commit comments

Comments
 (0)