mirror of
https://github.com/GenderDysphoria/GenderDysphoria.fyi.git
synced 2025-11-25 12:32:42 +00:00
* Implement toggle button * Dark mode mixins * Dark mode color design * Disable dark mode for prints * Initial dark mode design * Fix light mode mixin * Disable dark mode on print style * Move dark mode color scheme below the default style to allow referencing * Fix dropdown * Fix device-based dark mode * Dark mode index page design * Responsive auxiliary nav with dark mode toggle * Remove box shadow when on smaller displays * Prevent default on toggle click * Move attribution/licensing to README.md * Fix header padding on index page * Background color transition animation * Remove margin on index when on mobile displays * Remove neon border when on mobile * Fix post-header margin on mobile * Lighten card headers in dark mode
14 lines
234 B
SCSS
14 lines
234 B
SCSS
.dropdown-menu {
|
|
@include dark-mode {
|
|
background-color: #2d2d2d;
|
|
|
|
.dropdown-item, .dropdown-item:hover:active:not(.active) {
|
|
color: white;
|
|
}
|
|
|
|
.dropdown-item:hover:not(:active) {
|
|
color: black;
|
|
}
|
|
}
|
|
}
|