Skip to content

Commit

Permalink
Mobile adjustments.
Browse files Browse the repository at this point in the history
  • Loading branch information
jbum committed Dec 20, 2023
1 parent 0a20540 commit 9a1b1c9
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions docs/src/css/sass/ds-site-global.scss
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,23 @@ div.content-grid-wrapper {
margin-top: 32px;
gap:24px;
}
@media screen and (max-width: 1200px) {
div.content-grid-wrapper {
grid-template-columns: 276px 276px 276px;
}
}
@media screen and (max-width: 900px) {
div.content-grid-wrapper {
grid-template-columns: 276px 276px;
}
}
@media screen and (max-width: 600px) {
div.content-grid-wrapper {
grid-template-columns: 276px;
}
}


div.content-tile {
background-color:white;
padding: 24px 16px;
Expand Down Expand Up @@ -104,6 +121,12 @@ div.howtouse-grid-wrapper {
width: 100%;
}

@media screen and (max-width: 1000px) {
div.howtouse-grid-wrapper {
grid-template-columns: 508px;
}
}

div.howtouse-tile-copy {
clear: both;
min-height: 8rem;
Expand Down

0 comments on commit 9a1b1c9

Please sign in to comment.