style(sass): fix lint errors

This commit is contained in:
Brandy Carney
2018-02-13 15:49:40 -05:00
parent e4c4419f70
commit f4d1c6f561
3 changed files with 12 additions and 11 deletions

View File

@ -6,14 +6,14 @@
.item-option-button { .item-option-button {
@include padding(0, .7em); @include padding(0, .7em);
border: 0;
background: none;
color: inherit;
height: 100%;
width: 100%; width: 100%;
height: 100%;
border: 0;
font-size: 1em; font-size: 1em;
color: inherit;
background: none;
} }
ion-item-options .item-option-button-inner { ion-item-options .item-option-button-inner {
@ -33,7 +33,8 @@ ion-item-options .item-option-button-inner {
} }
.item-option-button [slot="icon-only"] { .item-option-button [slot="icon-only"] {
padding: 0; @include padding(0);
min-width: .9em; min-width: .9em;
font-size: 1.8em; font-size: 1.8em;

View File

@ -12,10 +12,6 @@ ion-item-options {
font-size: 14px; font-size: 14px;
&.hydrated {
visibility: hidden;
}
@include multi-dir() { @include multi-dir() {
// scss-lint:disable PropertySpelling // scss-lint:disable PropertySpelling
top: 0; top: 0;
@ -38,6 +34,10 @@ ion-item-options {
justify-content: flex-end; justify-content: flex-end;
} }
} }
&.hydrated {
visibility: hidden;
}
} }
ion-item-options[side=left] { ion-item-options[side=left] {

View File

@ -7,4 +7,4 @@
$reorder-md-icon-font-size: 1.8em !default; $reorder-md-icon-font-size: 1.8em !default;
/// @prop - Opacity of the reorder icon /// @prop - Opacity of the reorder icon
$reorder-md-icon-opacity: .3 !default; $reorder-md-icon-opacity: .3 !default;