lint fixes

This commit is contained in:
Matthias Kretschmann 2020-03-16 12:08:27 +01:00
parent 94fa7701eb
commit b7c6543fbe
Signed by: m
GPG Key ID: 606EEEF3C479A91F
5 changed files with 19 additions and 5 deletions

View File

@ -14,12 +14,16 @@
}
.header {
// stylelint-disable value-keyword-case
composes: categoryImage;
// stylelint-enable value-keyword-case
height: 8rem;
margin-top: $spacer / $line-height;
}
.dimmed {
// stylelint-disable value-keyword-case
composes: categoryImage;
// stylelint-enable value-keyword-case
opacity: .6;
}

View File

@ -19,7 +19,9 @@
}
.inputWrapSearch {
// stylelint-disable value-keyword-case
composes: inputWrap;
// stylelint-enable value-keyword-case
.input {
padding-left: $spacer * 1.5;

View File

@ -17,7 +17,9 @@
/* yellow triangle */
.statusIndicatorCloseEnough {
// stylelint-disable value-keyword-case
composes: statusIndicator;
// stylelint-enable value-keyword-case
background: none;
width: 0;
height: 0;
@ -28,7 +30,9 @@
/* green circle */
.statusIndicatorActive {
// stylelint-disable value-keyword-case
composes: statusIndicator;
// stylelint-enable value-keyword-case
border-radius: 50%;
background: $green;
}

View File

@ -22,6 +22,7 @@
margin-bottom: -.1rem;
}
// stylelint-disable value-keyword-case
.indicator {
composes: statusIndicator from '../AccountStatus/Indicator.module.scss';
}
@ -29,6 +30,7 @@
.indicatorActive {
composes: statusIndicatorActive from '../AccountStatus/Indicator.module.scss';
}
// stylelint-enable value-keyword-case
.indicatorLabel {
font-family: $font-family-title;

View File

@ -21,12 +21,14 @@ $brand-gradient: linear-gradient(to right bottom, $brand-purple, $brand-pink);
$body-background: darken($brand-white, 1%);
// Fonts
$font-family-base: 'Sharp Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI',
Helvetica, Arial, sans-serif;
$font-family-title: 'Sharp Sans Display', -apple-system, BlinkMacSystemFont,
'Segoe UI', Helvetica, Arial, sans-serif;
$font-family-monospace: 'Fira Code', 'Fira Mono', Menlo, Monaco, Consolas,
// stylelint-disable value-keyword-case
$font-family-base: 'Sharp Sans', -apple-system, blinkmacsystemfont, 'Segoe UI',
helvetica, arial, sans-serif;
$font-family-title: 'Sharp Sans Display', -apple-system, blinkmacsystemfont,
'Segoe UI', helvetica, arial, sans-serif;
$font-family-monospace: 'Fira Code', 'Fira Mono', menlo, monaco, consolas,
'Courier New', monospace;
// stylelint-enable value-keyword-case
$font-size-root: 16px;
$font-size-base: 1rem;