Skip to content

Instantly share code, notes, and snippets.

View andrewspode's full-sized avatar

Andrew Spode andrewspode

View GitHub Profile
<script>
const classes = ClassGroup({
descriptionBox: {
layout: 'm-auto w-3/4 p-2',
presentation: 'bg-gray-100 text-cyan-600',
}
});
</script>
// We are using Svelte!
<style>
.descriptionBox {
@apply bg-gray-100 text-cyan-600 m-auto w-3/4 p-2
}
</style>
<div class="descriptionBox"></div>
@andrewspode
andrewspode / cube.html
Created April 20, 2021 13:18
CUBE Example
<div class="[ bg-gray-100 text-cyan-600 ] [ m-auto w-3/4 p-2 ]"></div>