7dd8ca13c4
* Migrate to plain CSS (remove CSS modules) Change `prefixer` to a function instead of a proxy * Switch prefix to `nc` * Replace prefixer with literal class names * Remove prefixer * Fix migration errors * fix compose migrations * Remove unnecessary theme imports * Remove old CSS import * fix sticky toolbar positioning * update to cssnano v4 so preset is used * fix css pseudo selectors * update lockfile
24 lines
681 B
CSS
24 lines
681 B
CSS
/* stylelint-disable */
|
|
/* This is an utility file that should not be included in production build */
|
|
.undefined {
|
|
position: fixed !important;
|
|
top: 0 !important;
|
|
right: 0 !important;
|
|
bottom: 0 !important;
|
|
left: 0 !important;
|
|
display: flex !important;
|
|
align-items: center !important;
|
|
justify-content: center !important;
|
|
background: red !important;
|
|
color: white !important;
|
|
font-weight: bold !important;
|
|
font-size: 30px !important;
|
|
}
|
|
|
|
.undefined::after {
|
|
display: block !important;
|
|
padding: 15px 30px !important;
|
|
content: 'ERROR! You are missing a class definition in your css module! Inspect me to find out where.' !important;
|
|
}
|
|
/* stylelint-enable */
|