Skip to content

Commit

Permalink
fix(style): bring back .v-application scope to utility classes (#7921)
Browse files Browse the repository at this point in the history
regression from 9c122fe
  • Loading branch information
johnleider committed Jul 22, 2019
1 parent 1e28f5a commit bf15ab7
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
6 changes: 3 additions & 3 deletions packages/vuetify/src/styles/elements/_global.sass
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ html
font-family: $body-font-family
line-height: $line-height-root

::-ms-clear
::-ms-reveal
display: none
::-ms-clear,
::-ms-reveal
display: none
3 changes: 2 additions & 1 deletion packages/vuetify/src/styles/tools/_utilities.sass
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@
@else
@error 'Only RTL and LTR are supported'
@else
+generate-utility-body($utility, $properties, $value, $infix)
.v-application
+generate-utility-body($utility, $properties, $value, $infix)

=generate-utility-body($utility, $properties, $value, $infix)
// Use custom class if present
Expand Down
7 changes: 4 additions & 3 deletions packages/vuetify/src/styles/utilities/_transition.sass
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
@each $name, $bezier in $transition
.v-application .transition-#{$name}
transition: 0.3s $bezier !important
.v-application
@each $name, $bezier in $transition
.transition-#{$name}
transition: 0.3s $bezier !important

0 comments on commit bf15ab7

Please sign in to comment.