27 lines
476 B
SCSS
27 lines
476 B
SCSS
.connection-status {
|
|
display: none;
|
|
|
|
&.interrupted {
|
|
background-color: rgba(0, 0, 0, .75);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 100%;
|
|
height: 100%;
|
|
position: relative;
|
|
|
|
.message {
|
|
color: white;
|
|
font-family: monospace;
|
|
font-size: 0.7em;
|
|
text-align: center;
|
|
text-transform: uppercase;
|
|
|
|
.dots {
|
|
color: rgb(150, 150, 150);
|
|
font-size: 0.5em;
|
|
}
|
|
}
|
|
}
|
|
}
|