Skip to content

Instantly share code, notes, and snippets.

@raiyansarker
Created September 1, 2021 10:52
Show Gist options
  • Save raiyansarker/2ebb21f3c41e52c2564d1dfe5e4c3834 to your computer and use it in GitHub Desktop.
Save raiyansarker/2ebb21f3c41e52c2564d1dfe5e4c3834 to your computer and use it in GitHub Desktop.
<div class="w-screen h-screen">
<div class="flex flex-row justify-center items-center mx-auto w-full h-full">
<div class="grid grid-cols-6 grid-rows-3 h-full w-full">
<div class="col-span-2 row-span-3 bg-teal-500 h-full w-full"></div>
<div class="col-span-2 row-span-3 bg-red-700 h-full w-full"></div>
<div class="col-span-2 row-span-1 bg-blueGray-800 h-full w-full"></div>
<div class="col-span-2 row-span-1 bg-violet-700 h-full w-full"></div>
<div class="col-span-1 row-span-1 bg-blue-400 h-full w-full"></div>
<div class="col-span-1 row-span-1 bg-fuchsia-600 h-full w-full"></div>
</div>
</div>
</div>
const colors = require('tailwindcss/colors')
module.exports = {
mode: 'jit',
theme: {
extend: {
colors: {
...colors
},
},
},
variants: {},
plugins: [],
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment