Resolved spacing for Download CV Buttons & 6 icons in footer

This commit is contained in:
its-michaelroy
2025-04-04 18:20:06 -03:00
parent ee8a0b29d9
commit 0d1c3a4043
2 changed files with 71 additions and 1 deletions

View File

@@ -1508,6 +1508,31 @@ $size-header-pad: 4em;
/* Small */
.CVButtons {
display: flex;
justify-content: center;
gap: 1em;
margin-bottom: 1em;
flex-wrap: wrap;
.button {
flex: 1;
min-width: 200px;
max-width: 250px;
}
@include breakpoint('<=small') {
flex-direction: column;
align-items: center;
gap: 0.5em;
.button {
width: 100%;
max-width: 300px;
}
}
}
@include breakpoint('<=small') {
$size-header-pad: 1.5em;