26 lines
434 B
SCSS
Executable File
26 lines
434 B
SCSS
Executable File
|
|
.shoppagecontainer {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 2rem;
|
|
padding: 12rem 0 4rem;
|
|
|
|
h1 {
|
|
font-family: var(--font);
|
|
font-size: 2rem;
|
|
font-weight: 600;
|
|
color: var(--color-grey);
|
|
}
|
|
.cardcontainer {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 1rem;
|
|
justify-content: center;
|
|
max-width: 1280px;
|
|
|
|
}
|
|
|
|
|
|
|
|
} |