First alpha
This commit is contained in:
24
src/components/routing.scss
Executable file
24
src/components/routing.scss
Executable file
@ -0,0 +1,24 @@
|
||||
.transition_container {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
overflow: auto;
|
||||
background: var(--back-color);
|
||||
}
|
||||
|
||||
.transition_slidein {
|
||||
animation-name: slidein;
|
||||
animation-duration: 0.3s;
|
||||
z-index: 128;
|
||||
}
|
||||
|
||||
@keyframes slidein {
|
||||
from {
|
||||
left: 100%;
|
||||
}
|
||||
to {
|
||||
left: 0%;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user