mirror of
https://github.com/Paris-est-Ludique/intranet.git
synced 2025-06-08 08:34:20 +02:00
some css lint fixes
This commit is contained in:
parent
8e72708b4e
commit
ac90f88915
@ -6,4 +6,14 @@ module.exports = {
|
||||
"stylelint-config-prettier",
|
||||
],
|
||||
ignoreFiles: ["public/assets/**/*.css", "coverage/**/*.css"],
|
||||
rules: {
|
||||
"order/properties-alphabetical-order": undefined,
|
||||
"selector-class-pattern": [
|
||||
"^[A-Za-z0-9\\-]+$",
|
||||
{
|
||||
message:
|
||||
"Selector should be written with alphanumeric characters only (selector-class-pattern)",
|
||||
},
|
||||
],
|
||||
},
|
||||
}
|
||||
|
@ -46,7 +46,7 @@
|
||||
font-weight: 400;
|
||||
text-decoration: none;
|
||||
color: $color-orange;
|
||||
text-shadow: 2px 2px 2px black;
|
||||
text-shadow: 2px 2px 2px $color-black;
|
||||
}
|
||||
}
|
||||
|
||||
@ -54,11 +54,3 @@
|
||||
font-size: 14px;
|
||||
color: #555;
|
||||
}
|
||||
|
||||
.header {
|
||||
color: inherit;
|
||||
display: block;
|
||||
overflow: auto;
|
||||
padding: 15px;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
@ -3,7 +3,7 @@
|
||||
button {
|
||||
padding: 5px 20px;
|
||||
background-color: $color-orange;
|
||||
border: none;
|
||||
border: 0;
|
||||
color: $color-white;
|
||||
border-radius: 14px;
|
||||
font-weight: bold;
|
||||
|
@ -1,7 +1,8 @@
|
||||
$color-white: #fff;
|
||||
$color-black: #000;
|
||||
$color-orange: #ea4d0a;
|
||||
|
||||
$border-large: 4px solid black;
|
||||
$border-thin: 2px solid black;
|
||||
$border-large: 4px solid $color-black;
|
||||
$border-thin: 2px solid $color-black;
|
||||
|
||||
$font-pel: "Grobold";
|
||||
|
Loading…
x
Reference in New Issue
Block a user