Skip to content

Commit 1216904

Browse files
committed
💄 UI(tips): update style to dark mode
1 parent 3715686 commit 1216904

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

‎src/css/_tips.scss

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ section#tips {
99
}
1010

1111
.tips-snippet {
12-
color: $darkgrey;
1312
min-height: 200px;
1413
display: flex;
1514
flex-direction: column;
@@ -20,16 +19,23 @@ section#tips {
2019
margin-top: 20px;
2120
margin-bottom: 20px;
2221

23-
border: 1px solid rgba(255, 255, 255, 0.25);
22+
border: 1px solid rgba($lightblue, 0.25);
2423
border-radius: 20px;
25-
background-color: rgba(255, 255, 255, 0.45);
26-
box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.25);
24+
background-color: rgba($darkerblue, 0.66);
25+
box-shadow: 0 0 10px 1px rgba($lightblue, 0.25);
2726

2827
backdrop-filter: blur(15px);
2928

3029
a {
31-
color: $darkerblue;
30+
color: $nyanza;
3231
text-decoration: underline;
32+
&:hover {
33+
color: $lightblue;
34+
}
35+
}
36+
37+
h2 {
38+
margin: 0;
3339
}
3440
}
3541
}

0 commit comments

Comments
 (0)