mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
11 lines
331 B
SCSS
11 lines
331 B
SCSS
// Entry for netbox-dark.css stylesheet.
|
|
|
|
html[data-netbox-color-mode='dark'] {
|
|
// Imports are scoped under the body when its data-netbox-color-mode attribute is set to 'dark'.
|
|
@import './theme-dark.scss';
|
|
@import './bootstrap.scss';
|
|
@import './select.scss';
|
|
@import './flatpickr-dark.scss';
|
|
@import './netbox.scss';
|
|
}
|