Skip to content

Instantly share code, notes, and snippets.

View salazarr-js's full-sized avatar

Jose Salazar salazarr-js

View GitHub Profile
@salazarr-js
salazarr-js / tailwind-preflight.css
Created January 24, 2023 13:07
Tailwind preflight
/* ! tailwindcss v3.2.4 | MIT License | https://tailwindcss.com */
*,
::before,
::after {
box-sizing: border-box;
border-width: 0;
border-style: solid;
border-color: #e5e7eb;
content: '';
@salazarr-js
salazarr-js / main.scss
Created September 18, 2024 18:18
Scss theme mixin
@mixin theme($theme) {
@at-root #{selector-nest(':root[data-theme=#{$theme}]', &)} {
@content;
}
}
:root {
--bg-color: lightcoral;
}