mirror of
https://github.com/hugo-fixit/FixIt.git
synced 2026-08-24 15:28:57 +00:00
17 lines
299 B
SCSS
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);
|
|
}
|
|
}
|