forked from quasarframework/quasar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshadows.vue
More file actions
18 lines (17 loc) · 680 Bytes
/
shadows.vue
File metadata and controls
18 lines (17 loc) · 680 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<template>
<div class="layout-padding">
<p class="caption text-left">Standard shadows</p>
<div class="flex inline shadow-box flex-center" v-for="n in 24" :class="['shadow-' + n]" :key="`a-${n}`">.shadow-{{n}}</div>
<p class="caption text-left">Shadows pointing up</p>
<div class="flex inline shadow-box flex-center" v-for="n in 24" :class="['shadow-up-' + n]" :key="`b-${n}`">.shadow-up-{{n}}</div>
<p class="caption text-left">Inset Shadow</p>
<div class="flex inline shadow-box flex-center inset-shadow">.inset-shadow</div>
</div>
</template>
<style lang="stylus">
.shadow-box
width 110px
height 110px
margin 25px
border-radius 5px
</style>