Skip to content

Commit

Permalink
feat: adjust margins
Browse files Browse the repository at this point in the history
  • Loading branch information
fterra-encora committed Sep 26, 2023
1 parent 492550e commit c6747a7
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions frontend/src/assets/styles/global.scss
Original file line number Diff line number Diff line change
Expand Up @@ -757,7 +757,7 @@ cds-modal {
}

.screen {
margin: 1.5rem 1rem 1rem 1rem;
margin: 1.5rem 1rem 2.5rem 1rem;
flex-direction: column;
align-items: center;
}
Expand Down Expand Up @@ -811,7 +811,7 @@ cds-modal {
/* Lower range width is still a mess */

.screen {
margin: 2rem 2rem 0 2rem;
margin: 2.5rem 2rem;
align-items: center;
}

Expand All @@ -828,7 +828,7 @@ cds-modal {
/* Large (from 1056px to 1311px) */
@media screen and (min-width: 1056px) and (max-width: 1311px) {
.screen {
margin: 2rem 2rem 0 2rem;
margin: 2.5rem 2rem;
align-items: center;
}
.grouping-02, .grouping-03 {
Expand All @@ -839,7 +839,7 @@ cds-modal {
/* X-Large (from 1312px to 1583px) */
@media screen and (min-width: 1312px) and (max-width: 1583px) {
.screen {
margin: 2rem 2rem 0 2rem;
margin: 2.5rem 2rem;
align-items: center;
}
.grouping-02, .grouping-03 {
Expand All @@ -849,6 +849,10 @@ cds-modal {

/* XX-Large (from 1584px to 1783px) */
@media screen and (min-width: 1584px) and (max-width: 1783px) {
.screen {
margin: 2.5rem 2rem;
align-items: center;
}
.grouping-02, .grouping-03 {
width: 50.4375rem;
}
Expand All @@ -857,11 +861,10 @@ cds-modal {
/* XXX-Large (1784px and above) */
@media screen and (min-width: 1784px) {
.screen {
margin: 2rem 7.75rem 0 2rem;
margin: 2.5rem 7.75rem;
align-items: center;
}
.grouping-02, .grouping-03 {
width: 50.4375rem;
}
}

0 comments on commit c6747a7

Please sign in to comment.