Skip to content

Instantly share code, notes, and snippets.

View VictorArowo's full-sized avatar

Victor Arowo VictorArowo

View GitHub Profile
@VictorArowo
VictorArowo / Tailwindcssunreset.scss
Created April 4, 2020 13:27 — forked from swyxio/Tailwindcssunreset.scss
Tailwind CSS Un-Reset - un-reset Tailwind's Preflight CSS Reset so that autogenerated HTML looks consistent with the rest of your Tailwind site.
.unreset {
a {
@apply text-blue-700 underline;
}
p {
@apply my-4;
}
blockquote,
figure {
function batch(array, elementPerBatch) {
const result = [];
for (let i = 0; i < array.length; i += elementPerBatch) {
result.push(array.slice(i, i + elementPerBatch));
}
return result;
}