12 lines
269 B
SCSS
12 lines
269 B
SCSS
// ----------------------------------------------------------------------------
|
|
// ANIMATIONS
|
|
// ----------------------------------------------------------------------------
|
|
|
|
@keyframes expand-outline {
|
|
from {
|
|
outline-offset: 0;
|
|
}
|
|
to {
|
|
outline-offset: 2px;
|
|
}
|
|
}
|