suit icon indicating copy to clipboard operation
suit copied to clipboard

Style tools for UI components

Results 20 suit issues
Sort by recently updated
recently updated
newest added

Hey all, Wanted to start up a discussion to share some ideas & concerns I have about what might be next for suitcss. Would love to get everyone's input. /cc...

discussion

Whilie thinking over and discussing [SUIT design principles](https://github.com/suitcss/suit/blob/master/doc/design-principles.md) I found that I might not understand some moments fully. --- 1) > Components should not directly modify the presentation or behaviour...

docs

e.g. suitcss-components-_, suitcss-utils-_

docs

Cross referencing: https://github.com/suitcss/base/issues/22

This is outdated and should be removed. [Component(1)](http://github.com/component/component): `component install suitcss/base`

base

We recently switched to using `postcss-easy-import` globs for certain files within our CSS manifest, like so: ```css @import "suitcss-base"; @import "./dependencies/css/partials/fonts/icons.css"; @import "./dependencies/css/partials/fonts/sans-serifs.css"; @import "./dependencies/css/partials/fonts/serifs.css"; @import "./dependencies/css/theme.css"; @import "./dependencies/css/reset.css"; @import...

preprocessor

It'd be nice to move the [rules object](https://github.com/suitcss/preprocessor/blob/master/lib/encapsulation.js#L4) so that other packages can use it. For example I would like to use it to create an utility class. @simonsmith if...

preprocessor

I have 4 breakpoints in project i'm working on. I need another Extra Large break point. How i can implement this and able to user utility size classes ``u-xl-size1of2`` for...

utils-size

What if I have a `LocalComponent` that's not intended for use outside of `MyComponent` - how do I name CSS classes? Would that be ok? ```js export default function MyComponent(..)...