Replies: 2 comments 1 reply
-
I don't have an answer for breakpoints, but with Sass, you can customize which parts of Pico you use: @use "pico" with (
$enable-semantic-container: true,
$enable-classes: false,
$modules: (
"content/code": false,
"forms/input-color": false,
"forms/input-date": false,
"forms/input-file": false,
"forms/input-range": false,
"forms/input-search": false,
"components/accordion": false,
"components/card": false,
"components/dropdown": false,
"components/loading": false,
"components/modal": false,
"components/nav": false,
"components/progress": false,
"components/tooltip": false,
"utilities/accessibility": false,
"utilities/reduce-motion": false
)
); You can thus have |
Beta Was this translation helpful? Give feedback.
-
I was able to "remove" the I figured out how to add additional items and update existing items to the Pico |
Beta Was this translation helpful? Give feedback.
-
Hello, is there any possibility to load only some breakpoints ?
Currently there are sm-xxl sizes, but I need only sm, md and lg
With this, I also want to build pico for mobile devices and desktop separatly, how to do that?
I can do that by overwriting Pico source files but it's not a good way.
Thank you for any tips.
Beta Was this translation helpful? Give feedback.
All reactions