Skip to content

Commit

Permalink
fix(vuetify): updated styles to match vuetify@v1.3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
nmsmith22389 committed Feb 4, 2019
1 parent 4941acb commit f4d7b74
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 8 deletions.
2 changes: 1 addition & 1 deletion components/_autocompletes.scss
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

&:not(.v-input--is-disabled).v-select.v-text-field {
input {
pointer-events: auto;
pointer-events: inherit;
}
}

Expand Down
2 changes: 2 additions & 0 deletions components/_menus.scss
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,8 @@
}

&.v-menu__content--auto {
transition: none !important;

.v-list__tile {
opacity: 0;
transform: translateY(rem(-15px));
Expand Down
4 changes: 2 additions & 2 deletions components/_progress-linear.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@
&__bar {
height: inherit;
position: relative;
transition: 0.2s map-get($transition, fast-in-slow-out);
transition: 0.2s map-get($transition, ease-in-out);
width: 100%;
z-index: 1;

&__determinate {
height: inherit;
transition: 0.2s map-get($transition, fast-in-slow-out);
transition: 0.2s map-get($transition, ease-in-out);
}

&__indeterminate {
Expand Down
3 changes: 2 additions & 1 deletion components/_text-fields.scss
Original file line number Diff line number Diff line change
Expand Up @@ -438,7 +438,8 @@
}
}

&.v-input--is-focused {
&.v-input--is-focused,
&.v-input--has-state {
.v-input__slot {
border: rem(2px) solid currentColor;
transition: border $primary-transition;
Expand Down
8 changes: 4 additions & 4 deletions trumps/_spacing.scss
Original file line number Diff line number Diff line change
Expand Up @@ -18,19 +18,19 @@
}

.mt-auto {
margin-top: auto;
margin-top: auto !important;
}

.mr-auto {
margin-right: auto;
margin-right: auto !important;
}

.mb-auto {
margin-bottom: auto;
margin-bottom: auto !important;
}

.ml-auto {
margin-left: auto;
margin-left: auto !important;
}

@each $level, $spacer in $spacers {
Expand Down

0 comments on commit f4d7b74

Please sign in to comment.