Skip to content

Commit 6f6dee0

Browse files
Merge branch 'develop' into bugfix/RZA-250092
2 parents ea200e8 + f5a2b68 commit 6f6dee0

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

src/assets/styles/footer.css

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@
6161

6262
.footer__nav {
6363
display: flex;
64+
6465
flex-wrap: wrap;
6566
justify-content: space-between;
6667
gap: 2rem;
@@ -127,6 +128,38 @@
127128
gap: 0.75rem;
128129
}
129130

131+
@media (min-width: 768px) {
132+
.footer__nav {
133+
flex-direction: row;
134+
}
135+
}
136+
137+
/* Dark mode styles */
138+
@media (prefers-color-scheme: dark) {
139+
.footer__nav {
140+
color: #6b7280;
141+
/* text-gray-500 */
142+
}
143+
}
144+
145+
.footer__nav--item {
146+
text-decoration: underline;
147+
text-underline-offset: 2px;
148+
transition: color 0.2s;
149+
}
150+
151+
.footer__nav--item:hover {
152+
color: #3b82f6;
153+
/* blue-500 */
154+
}
155+
156+
@media (prefers-color-scheme: dark) {
157+
.footer__nav--item:hover {
158+
color: #60a5fa;
159+
/* blue-400 */
160+
}
161+
}
162+
130163
.footer__nav--links a {
131164
color: var(--footer-text-secondary);
132165
text-decoration: none;

0 commit comments

Comments
 (0)