13 lines
186 B
CSS
13 lines
186 B
CSS
|
.buttons {
|
||
|
display: flex;
|
||
|
justify-content: flex-end;
|
||
|
margin-bottom: var(--gap);
|
||
|
}
|
||
|
|
||
|
@media screen and (max-width: 768px) {
|
||
|
.buttons {
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
}
|
||
|
}
|