changed some margins for a better use of space

This commit is contained in:
Emma Tebibyte 2022-09-21 20:13:47 -04:00
parent f32deff8db
commit a80c27cf6b
1 changed files with 3 additions and 3 deletions

View File

@ -56,6 +56,7 @@ main {
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
flex-wrap: wrap; flex-wrap: wrap;
gap: 1em;
margin: 0; margin: 0;
padding: 1em; padding: 1em;
border-radius: 20px; border-radius: 20px;
@ -64,13 +65,12 @@ main {
} }
section { section {
margin: 1em; flex-basis: 49%;
flex-basis: 45%;
flex-grow: 1; flex-grow: 1;
} }
section.full { section.full {
margin: 1em; margin: 0;
flex-basis: 100%; flex-basis: 100%;
text-align: justify; text-align: justify;
} }