frigate/web/src/index.css

36 lines
552 B
CSS
Raw Normal View History

2021-01-09 20:26:46 +03:00
@tailwind base;
@tailwind components;
@tailwind utilities;
.activityindicator {
border-top-color: currentColor;
-webkit-animation: spinner 0.75s linear infinite;
animation: spinner 0.75s linear infinite;
}
@-webkit-keyframes spinner {
0% {
-webkit-transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
}
}
@keyframes spinner {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
2021-06-02 09:41:26 +03:00
.vjs-playlist-modal {
position: absolute;
top: 0;
right: 0;
width: 33%;
height: 100%;
}