Skip to content

Commit

Permalink
MWPW-154562 Fix resource form margins
Browse files Browse the repository at this point in the history
  • Loading branch information
Brandon32 committed Jul 18, 2024
1 parent 36f1cb3 commit c558d5b
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions styles/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,11 @@ main .section.five-up {
padding-right: var(--grid-margins-width);
}

main .resource-form.section.two-up .marketo {
margin-left: calc(var(--grid-margins-width) * -1);
margin-right: calc(var(--grid-margins-width) * -1);
}

@media screen and (min-width: 1200px) {
main .section.grid-width-10 {
padding-left: var(--grid-margins-width-10);
Expand All @@ -93,3 +98,10 @@ main .section.five-up {
padding-right: var(--grid-margins-width-6);
}
}

@media screen and (min-width: 600px) {
main .resource-form.section.two-up .marketo {
margin-left: 0;
margin-right: 0;
}
}

0 comments on commit c558d5b

Please sign in to comment.