fix(assets): Satisfait le linter

pull/22/head
Raphaël Charles 2022-11-17 14:04:13 +01:00 commité par Antoine
Parent b5ef558d5d
révision fcdee9239f
3 fichiers modifiés avec 8 ajouts et 9 suppressions

Voir le fichier

@ -29,7 +29,6 @@ $primary: $purple;
$secondary: $green;
$light: #f7f7f7;
// Options
$enable-validation-icons: false;

Voir le fichier

@ -24,8 +24,8 @@
.taglike-input label {
display: inline-block;
padding: $spacer / 4 $spacer;
margin: $spacer / 4 0;
padding: calc($spacer / 4) $spacer;
margin: calc($spacer / 4) 0;
cursor: pointer;
background-color: lighten($color: lightgrey, $amount: 10);
border-radius: $spacer;
@ -36,7 +36,7 @@
}
.taglike-input input[type='checkbox']:focus + label {
border: $spacer / 8 grey;
border: calc($spacer / 8) grey;
}
.taglike-input label:hover {
@ -64,9 +64,9 @@
z-index: 20;
display: block;
width: calc(100% - 40px);
height: $spacer * 3;
height: calc($spacer * 3);
font-weight: 300;
line-height: $spacer * 3;
line-height: calc($spacer * 3);
color: $primary;
pointer-events: none;
content: attr(data-text);
@ -84,7 +84,7 @@
padding: 0 15px;
font-size: $spacer;
font-weight: 500;
line-height: $spacer * 2;
line-height: calc($spacer * 2);
color: $black;
pointer-events: none;
content: 'Parcourir..';
@ -106,7 +106,7 @@
z-index: 99;
display: block;
width: 100%;
height: $spacer * 3;
height: calc($spacer * 3);
padding: 0;
margin: 0;
cursor: pointer;

Voir le fichier

@ -12,7 +12,7 @@
@import 'base/utils';
// Layout-related sections
@import "layout/main";
@import 'layout/main';
//@import "layout/header";
//@import "layout/footer";