mirror of
https://github.com/matt-fidd/stratos.git
synced 2026-01-02 00:59:29 +00:00
21 lines
325 B
SCSS
21 lines
325 B
SCSS
.homeNav {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
padding: 0.5em 1em;
|
|
|
|
&__buttons {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, 1fr);
|
|
align-items: center;
|
|
justify-items: end;
|
|
gap: 1em;
|
|
}
|
|
|
|
@include respond-to('medium') {
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
}
|
|
}
|
|
|