Files
FixIt/assets/css/_partials/_widgets/_noscript-warning.scss
T
2022-09-13 16:39:39 +08:00

17 lines
299 B
SCSS

.noscript-warning {
background-color: var(--#{$prefix}danger);
color: white;
font-size: 1rem;
font-weight: bold;
position: fixed;
text-align: center;
left: 0;
top: 0;
width: 100%;
z-index: 150;
[data-theme='dark'] & {
background-color: var(--#{$prefix}danger-dark);
}
}