homehub/packages/homehub_app/scss/app.scss

35 lines
651 B
SCSS

@import "scss/vendor/bootswatch/cyborg_variables";
@import "scss/vendor/bootstrap/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);
}
}