12 lines
144 B
SCSS
12 lines
144 B
SCSS
@keyframes fullscreen-image-appear {
|
|
from {
|
|
opacity: 0;
|
|
width: 0;
|
|
height: 0;
|
|
}
|
|
|
|
to {
|
|
width: 100%;
|
|
height: 100vh;
|
|
}
|
|
} |