Skip to content

Commit 60723ff

Browse files
Merge pull request #11 from reccaller-ai/fix/reduce-logo-icon-size
fix: Reduce logo icon size for better proportion with text
2 parents cf7b58e + b0304f0 commit 60723ff

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

assets/css/style.css

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -71,19 +71,19 @@ body {
7171
.logo img {
7272
display: inline-block;
7373
flex-shrink: 0;
74-
height: 36px;
75-
width: 36px;
76-
border-radius: 8px;
77-
padding: 4px;
74+
height: 18px;
75+
width: 18px;
76+
border-radius: 4px;
77+
padding: 2px;
7878
background: linear-gradient(135deg, rgba(30, 64, 175, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
7979
border: 1px solid rgba(30, 64, 175, 0.2);
80-
box-shadow: 0 2px 4px rgba(30, 64, 175, 0.1);
80+
box-shadow: 0 1px 2px rgba(30, 64, 175, 0.1);
8181
transition: all 0.3s ease;
8282
}
8383

8484
.logo:hover img {
85-
transform: scale(1.05);
86-
box-shadow: 0 4px 8px rgba(30, 64, 175, 0.2);
85+
transform: scale(1.1);
86+
box-shadow: 0 2px 4px rgba(30, 64, 175, 0.2);
8787
background: linear-gradient(135deg, rgba(30, 64, 175, 0.15) 0%, rgba(59, 130, 246, 0.15) 100%);
8888
}
8989

0 commit comments

Comments
 (0)