2016-10-06 16:10:21 +02:00
|
|
|
/* stylelint-disable */
|
|
|
|
/* This is an utility file that should not be included in production build */
|
2017-10-18 09:29:38 -07:00
|
|
|
.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;
|
|
|
|
}
|
2016-10-06 16:10:21 +02:00
|
|
|
|
2017-10-18 09:29:38 -07:00
|
|
|
.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;
|
2016-10-06 16:10:21 +02:00
|
|
|
}
|
|
|
|
/* stylelint-enable */
|