Skip to content

Commit

Permalink
remove comments
Browse files Browse the repository at this point in the history
  • Loading branch information
ntsekouras committed Dec 18, 2024
1 parent fc0eb9a commit f0997cc
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions packages/dataviews/src/dataviews-layouts/grid/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -131,25 +131,20 @@
* Breakpoints were adjusted from media queries breakpoints to account for
* the sidebar width. This was done to match the existing styles we had.
*/
/* stylelint-disable-next-line scss/at-rule-no-unknown -- '@container' not globally permitted */
@container (max-width: 480px) {
grid-template-columns: repeat(1, minmax(0, 1fr));
padding-left: $grid-unit-30;
padding-right: $grid-unit-30;
}
/* stylelint-disable-next-line scss/at-rule-no-unknown -- '@container' not globally permitted */
@container (min-width: 480px) {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
/* stylelint-disable-next-line scss/at-rule-no-unknown -- '@container' not globally permitted */
@container (min-width: 780px) {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
/* stylelint-disable-next-line scss/at-rule-no-unknown -- '@container' not globally permitted */
@container (min-width: 1140px) {
grid-template-columns: repeat(4, minmax(0, 1fr));
}
/* stylelint-disable-next-line scss/at-rule-no-unknown -- '@container' not globally permitted */
@container (min-width: 1520px) {
grid-template-columns: repeat(5, minmax(0, 1fr));
}
Expand Down

0 comments on commit f0997cc

Please sign in to comment.