20 lines
238 B
Stylus
20 lines
238 B
Stylus
@import "{design}/app.styl"
|
|
|
|
@keyframes zoomInOut {
|
|
from {
|
|
transform(scale(0))
|
|
}
|
|
to {
|
|
transform(scale(1))
|
|
}
|
|
}
|
|
|
|
@keyframes fadeInOut {
|
|
from {
|
|
opacity: 0
|
|
}
|
|
to {
|
|
opacity: 1
|
|
}
|
|
}
|