Spaces:
Running
Running
File size: 613 Bytes
82b391b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
.buttons {
display: flex;
align-items: center;
justify-content: left;
width: 100%;
}
.bottom_buttons {
width: 100%;
display: flex;
flex-direction: column;
gap: 10px;
}
.bottom_buttons button {
padding: 8px 12px;
display: flex;
gap: 18px;
align-items: center;
cursor: pointer;
user-select: none;
background: transparent;
border: 1px solid #c7a2ff;
border-radius: var(--border-radius-1);
width: 100%;
}
.bottom_buttons button span {
color: var(--colour-3);
font-size: 14px;
}
@media screen and (max-width: 990px) {
.buttons {
align-items: flex-start;
flex-wrap: wrap;
gap: 15px;
}
}
|