Skip to content

Commit

Permalink
fix(vuetify): updated styles to match vuetify@v1.4.4
Browse files Browse the repository at this point in the history
  • Loading branch information
nmsmith22389 committed Feb 5, 2019
1 parent dbfa493 commit 0d5dd56
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion components/_cards.scss
Expand Up @@ -17,6 +17,7 @@
}

.v-card {
@include elevation(2);
text-decoration: none;

> *:first-child:not(.v-btn):not(.v-chip) {
Expand All @@ -29,13 +30,17 @@
border-bottom-right-radius: inherit;
}

&--flat {
@include elevation(0);
}

&--hover {
cursor: pointer;
transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
transition-property: box-shadow;

&:hover {
@include elevation(8, true);
@include elevation(8);
}
}

Expand Down

0 comments on commit 0d5dd56

Please sign in to comment.