UNPKG

@s-ui/theme

Version:

Generic theme to add styles to all SUI components

33 lines (25 loc) 503 B
## Utility classes > ⚠️ This is a PoC. May change in the future without notice **Spacing classes** Provides a basic spacing classes library based in emmet convection. In your vertical theme import the library: ```scss @import '~/@s-ui/theme/lib/classes'; ``` This generates margin and padding spacing classes with basic SUI spacing variables ```scss .m-m { margin: 8px; } .m-s { margin: 4px; } ... .mt-m { margin-top: 8px; } .mt-s { margin-top: 4px; } ... ```