37 lines
672 B
SCSS
37 lines
672 B
SCSS
@use "sass:math";
|
|
|
|
@import "scss/vendor/bootswatch/cyborg_variables";
|
|
@import "scss/vendor/bootstrap46/bootstrap";
|
|
@import "scss/vendor/bootswatch/cyborg_variables";
|
|
@import "node_modules/@bthlabs/react-custom-popup/lib/react-custom-popup";
|
|
|
|
/*!
|
|
* BTHLabs HomeHub - Frontend Application (https://bthlabs.pl/)
|
|
* Copyright 2021-present BTHLabs
|
|
* Apache License Version 2.0
|
|
*/
|
|
|
|
body {
|
|
background: #000000;
|
|
}
|
|
|
|
.modal-body {
|
|
*:last-child {
|
|
margin-bottom: 0px;
|
|
}
|
|
}
|
|
|
|
.animation-loading {
|
|
animation: 1s ease-out 0s animation-loading infinite;
|
|
}
|
|
|
|
@keyframes animation-loading {
|
|
0% {
|
|
transform: rotate(0deg);
|
|
}
|
|
|
|
100% {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|