
solve partially this ticket : https://app.ora.pm/p/fb56ed95daa7456b888d266a050b9afa?v=86662&s=28293&t=k&c=657791f3b1c64e6cbbf22f9378c0bdae --------- Co-authored-by: OxSaitama <arnaud.daubernatali@smart-chain.fr> Co-authored-by: Massi <massi.hamidouche@smart-chain.fr>
18 lines
245 B
SCSS
18 lines
245 B
SCSS
@import "@Themes/constants.scss";
|
|
|
|
.buttons-container {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
gap: 16px;
|
|
margin-top: 8px;
|
|
|
|
button {
|
|
flex: 1;
|
|
}
|
|
|
|
@media (max-width: $screen-s) {
|
|
flex-direction: column-reverse;
|
|
gap: 8px;
|
|
}
|
|
}
|