mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-06 07:53:54 +00:00
cf206e6220
* chore: upgrade vite * fix: inconsistentCjsInterop for ReactQR * chore: e2e tests should use relativve path and get host from playwright config * refactor: drop qr code dependency --------- Co-authored-by: alex-Arc <omnivox@LAPTOP-RC5SNBVV.localdomain>
23 lines
342 B
SCSS
23 lines
342 B
SCSS
@use '@/theme/viewerDefs' as *;
|
|
|
|
.square {
|
|
border-radius: $component-border-radius-sm;
|
|
background-color: $viewer-color;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.blink {
|
|
animation: blink 1s ease-in-out infinite alternate;
|
|
}
|
|
|
|
@keyframes blink {
|
|
0% {
|
|
opacity: 10%;
|
|
}
|
|
100% {
|
|
opacity: 100%;
|
|
}
|
|
}
|