style(sass): update sass linters and fix lint errors

This commit is contained in:
Brandy Carney
2018-03-28 18:23:43 -04:00
parent 88752dea51
commit a1346a9e89
23 changed files with 95 additions and 89 deletions

View File

@ -10,6 +10,7 @@
min-width: 44px;
height: 32px;
border: 0;
font-size: 14px;
font-weight: 500;
@ -21,18 +22,19 @@
box-shadow: none;
&.activated {
opacity: 0.4;
opacity: .4;
}
}
.back-button-md ion-icon {
@include padding-horizontal(null, 0.3em);
@include padding-horizontal(null, .3em);
@include margin(0);
@include padding(0, 6px);
@include text-align(start);
font-size: 24px;
font-weight: normal;
line-height: 0.67;
line-height: .67;
pointer-events: none;
}

View File

@ -19,7 +19,13 @@
position: relative;
z-index: 0;
display: inline-block;
display: flex;
flex-flow: row nowrap;
flex-shrink: 0;
align-items: center;
justify-content: center;
border: 0;
outline: none;
@ -32,21 +38,14 @@
white-space: nowrap;
cursor: pointer;
vertical-align: top; // the better option for most scenarios
vertical-align: -webkit-baseline-middle; // the best for those that support it
transition: background-color, opacity 100ms linear;
font-kerning: none;
user-select: none;
display: flex;
flex-flow: row nowrap;
flex-shrink: 0;
align-items: center;
justify-content: center;
font-kerning: none;
}
.back-button .button-inner {