Skip to content

Instantly share code, notes, and snippets.

@fayazara
Created December 23, 2020 15:44
Show Gist options
  • Save fayazara/236c389cec1ddac9173ea2de4492231c to your computer and use it in GitHub Desktop.
Save fayazara/236c389cec1ddac9173ea2de4492231c to your computer and use it in GitHub Desktop.
Three column layout
<template>
<main class="min-h-screen bg-gray-200" style="margin-top: 65px">
<section class="container mx-auto py-8">
<div class="grid grid-cols-4 gap-4">
<div>
<ul class="space-y-4">
<li class="h-8 rounded bg-red-400" v-for="n in 7" :key="n"></li>
</ul>
</div>
<div class="col-span-2">
<ul class="space-y-4">
<li class="h-64 rounded bg-green-400" v-for="n in 20" :key="n"></li>
</ul>
</div>
<div>
<ul class="space-y-4">
<li class="h-8 rounded bg-blue-400" v-for="n in 7" :key="n"></li>
</ul>
</div>
</div>
</section>
</main>
</template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment