mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-23 16:09:11 +00:00
refactor: blink style
This commit is contained in:
committed by
Carlos Valente
parent
0500368982
commit
78fa1df99c
@@ -3,8 +3,6 @@
|
|||||||
$transition-time-action: 0.1s;
|
$transition-time-action: 0.1s;
|
||||||
$transition-time-feedback: 0.3s;
|
$transition-time-feedback: 0.3s;
|
||||||
|
|
||||||
$blinking-time: 1.2s;
|
|
||||||
|
|
||||||
$component-border-radius-md: 3px;
|
$component-border-radius-md: 3px;
|
||||||
$component-border-radius-sm: 2px;
|
$component-border-radius-sm: 2px;
|
||||||
|
|
||||||
@@ -61,10 +59,13 @@ $text-body-size: calc(1rem - 1px);
|
|||||||
$min-tablet: 500px;
|
$min-tablet: 500px;
|
||||||
|
|
||||||
.blink {
|
.blink {
|
||||||
animation: blink $blinking-time linear infinite;
|
animation: blink 1s step-start infinite;
|
||||||
}
|
}
|
||||||
|
|
||||||
@keyframes blink {
|
@keyframes blink {
|
||||||
|
0% {
|
||||||
|
opacity: 100%;
|
||||||
|
}
|
||||||
50% {
|
50% {
|
||||||
opacity: 20%;
|
opacity: 20%;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user