Generateurv2/frontend/styles/room/create.module.scss
2022-06-24 13:42:16 +02:00

48 lines
618 B
SCSS

@import '../mixins';
.main {
display: flex;
justify-content: center;
height: 100%;
}
.form {
display: flex;
flex-direction: column;
height: 80%;
width: 50%;
@include down(840){
width: 100%;
}
justify-content: center;
gap: 10px;
opacity: 1;
animation: fade 0.2s ease-in-out forwards 1;
}
@keyframes fade {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.title {
font-size: 2.5em;
text-align: center;
}
.options {
display: flex;
flex-direction: column;
gap: 10px;
& div {
cursor: pointer;
}
}
.swipe {
transition: 0.6s;
transform: translateX(-200%);
}