mirror of
https://github.com/a2nt/webpack-bootstrap-ui-kit.git
synced 2024-10-22 11:05:45 +02:00
40 lines
558 B
SCSS
40 lines
558 B
SCSS
|
/*
|
||
|
* Network States
|
||
|
*/
|
||
|
|
||
|
.loading {
|
||
|
animation: fade 0.5s linear infinite;
|
||
|
}
|
||
|
|
||
|
.graphql-page {
|
||
|
&.response-404 {
|
||
|
filter: grayscale(1);
|
||
|
opacity: 0.5;
|
||
|
cursor: not-allowed;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.is-offline {
|
||
|
iframe {
|
||
|
display: none;
|
||
|
}
|
||
|
|
||
|
.graphql-page {
|
||
|
&.response-523 {
|
||
|
filter: grayscale(1);
|
||
|
opacity: 0.5;
|
||
|
cursor: not-allowed;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
body.ajax-loading {
|
||
|
overflow: hidden;
|
||
|
height: 100vh;
|
||
|
|
||
|
#Header {
|
||
|
position: relative;
|
||
|
z-index: 2001;
|
||
|
}
|
||
|
}
|