Created
September 1, 2021 10:52
-
-
Save raiyansarker/2ebb21f3c41e52c2564d1dfe5e4c3834 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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