You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
646 B
SCSS
40 lines
646 B
SCSS
2 years ago
|
@import "open-color/open-color.scss";
|
||
|
|
||
5 years ago
|
.visually-hidden {
|
||
|
position: absolute !important;
|
||
|
height: 1px;
|
||
|
width: 1px;
|
||
|
overflow: hidden;
|
||
|
clip: rect(1px, 1px, 1px, 1px);
|
||
|
white-space: nowrap; /* added line */
|
||
4 years ago
|
user-select: none;
|
||
5 years ago
|
}
|
||
|
|
||
|
.LoadingMessage {
|
||
5 years ago
|
position: absolute;
|
||
5 years ago
|
top: 0;
|
||
|
right: 0;
|
||
|
bottom: 0;
|
||
|
left: 0;
|
||
|
z-index: 999;
|
||
|
display: flex;
|
||
3 years ago
|
flex-direction: column;
|
||
5 years ago
|
align-items: center;
|
||
|
justify-content: center;
|
||
|
pointer-events: none;
|
||
|
|
||
3 years ago
|
.Spinner {
|
||
|
font-size: 2.8em;
|
||
|
}
|
||
|
|
||
|
.LoadingMessage-text {
|
||
|
margin-top: 1em;
|
||
|
font-size: 0.8em;
|
||
|
}
|
||
5 years ago
|
}
|
||
2 years ago
|
|
||
|
.LoadingMessage--dark {
|
||
2 years ago
|
background-color: #121212;
|
||
|
color: #ced4da;
|
||
2 years ago
|
}
|