ohif-viewer/Packages/design/styles/common/keyframes.styl

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
}
}