33 lines
596 B
Text
33 lines
596 B
Text
.spinner {
|
|
pointer-events: none;
|
|
width: 3em;
|
|
height: 3em;
|
|
border: 0.4em solid #000;
|
|
border-top-color: @accent-color;
|
|
border-radius: 50%;
|
|
-webkit-animation: loadingspin 1s linear infinite;
|
|
animation: loadingspin 1s linear infinite;
|
|
}
|
|
|
|
@-webkit-keyframes loadingspin {
|
|
100% {
|
|
-webkit-transform: rotate(360deg);
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
|
|
@keyframes loadingspin {
|
|
100% {
|
|
-webkit-transform: rotate(360deg);
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
|
|
.App.menuOpen {
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
.notification-bar.notification-bar-active {
|
|
z-index: 1001;
|
|
font-family: inherit !important;
|
|
}
|