12 lines
186 B
CSS
12 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;
|
|
}
|
|
}
|