mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-10 00:03:24 +00:00
4830c3ea2d
--------- Co-authored-by: Thomas Girod <thgirod@hotmail.com> Co-authored-by: Théo DURR <git@theodurr.fr>
48 lines
648 B
SCSS
48 lines
648 B
SCSS
.container {
|
|
padding: 10px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 10px;
|
|
}
|
|
|
|
.row {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
margin-bottom: 10px;
|
|
gap: 30px;
|
|
|
|
@media (max-width: 535px) {
|
|
gap: 20px;
|
|
|
|
>div,
|
|
>div>.flexed {
|
|
width: 100%;
|
|
align-items: stretch;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
.flexed {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 2px;
|
|
align-items: self-start;
|
|
|
|
>div {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
|
|
>b,
|
|
>span {
|
|
width: 120px;
|
|
|
|
&:last-child {
|
|
text-align: right;
|
|
}
|
|
}
|
|
}
|
|
} |