12 lines
293 B
SCSS
12 lines
293 B
SCSS
// ----------------------------------------------------------------------------
|
|
// ANIMATIONS
|
|
// ----------------------------------------------------------------------------
|
|
|
|
@keyframes expand-outline {
|
|
0% {
|
|
outline-offset: 0;
|
|
}
|
|
100% {
|
|
outline-offset: 2px;
|
|
}
|
|
}
|