Skip to content

Instantly share code, notes, and snippets.

@johnleider
Created April 1, 2019 00:12
Show Gist options
  • Save johnleider/c5512dda122d564382db02e833a96883 to your computer and use it in GitHub Desktop.
Save johnleider/c5512dda122d564382db02e833a96883 to your computer and use it in GitHub Desktop.
<template>
<div>
<v-container
grid-list-xs
mb-5
ma-auto
>
<v-layout>
<v-flex
v-for="n in 20"
:key="n"
xs3
>
<v-card
height="100"
width="100%"
></v-card>
</v-flex>
</v-layout>
</v-container>
<v-container
grid-list-xl
contained
mb-7
>
<v-layout>
<v-flex
v-for="n in 20"
:key="n"
xs3
>
<v-card
height="100"
width="100%"
></v-card>
</v-flex>
</v-layout>
</v-container>
<v-sheet
color="grey lighten-1"
tile
>
<v-container grid-list-xl>
<v-layout
v-for="n in 2"
:key="n"
row
:reverse="n === 2"
>
<v-flex
xs12
md6
>
<v-sheet
color="grey"
height="100"
tile
></v-sheet>
</v-flex>
<v-flex
xs12
md3
>
<v-sheet
color="grey"
height="100"
tile
></v-sheet>
</v-flex>
<v-flex
xs12
md2
>
<v-sheet
color="grey"
height="100"
tile
></v-sheet>
</v-flex>
<v-flex
xs12
md1
>
<v-sheet
color="grey"
height="100"
tile
></v-sheet>
</v-flex>
</v-layout>
</v-container>
</v-sheet>
</div>
</template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment