28 lines
359 B
CSS
28 lines
359 B
CSS
.wrapper {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: var(--Space-x2);
|
|
}
|
|
|
|
.links {
|
|
display: grid;
|
|
gap: var(--Space-x15);
|
|
justify-items: center;
|
|
}
|
|
|
|
.link {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
@media screen and (min-width: 1367px) {
|
|
.wrapper {
|
|
align-items: start;
|
|
}
|
|
|
|
.links {
|
|
justify-items: start;
|
|
}
|
|
}
|