Spaces:
Runtime error
Runtime error
File size: 456 Bytes
de234b1 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | .nav-link {
transition: opacity 0.2s ease-in-out, color 0.2s ease-in-out;
color: #4568dc;
}
.nav-link:hover {
opacity: 0.75;
}
.logo {
transition: opacity 0.2s ease-in-out, color 0.2s ease-in-out;
color: white;
}
.logo:hover {
opacity: 0.75;
color: #ccc;
}
.MuiMenuItem-root {
font-size: 16px;
font-weight: bold;
color: #4568dc;
transition: opacity 0.2s ease-in-out, color 0.2s ease-in-out;
}
.MuiMenuItem-root:hover {
opacity: 0.75;
color: #b06ab3;
} |