Skip to content

Instantly share code, notes, and snippets.

View RaimonxDev's full-sized avatar

Ramon Martinez RaimonxDev

View GitHub Profile
@RaimonxDev
RaimonxDev / app.scss
Created September 11, 2023 14:50 — forked from lukaskleinschmidt/app.scss
Utility class generator like tailwindcss but in pure Sass.
@use 'sass:map';
@use 'variants' as * with (
$breakpoints: (
'small': 640px,
'medium': 768px,
'large': 1024px,
'wide': 1280px,
)
);