Replies: 1 comment
-
I may see a path to doing something like this. In the settings file we would have to add //.. beginning of map
xxl: (
breakpoint: 1536px,
viewport: 1450px,
root-font-size: 131.25%,
)
),
$breakpoints
) !default; Then you should be able to pass your breakpoints you want to use and it'll override the default breakpoints. Another thing we would need to be careful of doing is breaking the compiler for not having the breakpoints needed in the following files: _modal.scss used sm, md |
Beta Was this translation helpful? Give feedback.
-
Sometimes I don't want to use certain breakpoints defined by PicoCSS.
And for my recent app I decided I want different sets of breakpoints on different pages.
How about adding classes to disable breakpoints like
no-xl
andno-xxl
? (Perhaps just on the.container
elements?)I think it's just a matter of converting my Pico SASS breakpoint configuration hack into official classes.
Beta Was this translation helpful? Give feedback.
All reactions