mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-09-21 21:40:49 +02:00
fix(demo): update stylelint config and fix linter errors (#4)
This commit is contained in:
parent
d98658b979
commit
05c82bd602
2 changed files with 12 additions and 2 deletions
|
@ -24,6 +24,8 @@
|
|||
"value-list-comma-space-after": "always-single-line",
|
||||
"value-list-comma-space-before": "never",
|
||||
|
||||
"shorthand-property-no-redundant-values": true,
|
||||
|
||||
"property-case": "lower",
|
||||
|
||||
"declaration-block-no-duplicate-properties": [ true, {
|
||||
|
@ -35,6 +37,10 @@
|
|||
"declaration-block-semicolon-space-after": "always-single-line",
|
||||
"declaration-block-semicolon-newline-before": "never-multi-line",
|
||||
"declaration-block-semicolon-newline-after": "always-multi-line",
|
||||
"declaration-property-value-blacklist": [
|
||||
{ "/.*/": ["initial"] },
|
||||
{ "message": "The `initial` value is not supported in IE."}
|
||||
],
|
||||
|
||||
"block-closing-brace-newline-after": [
|
||||
"always",
|
||||
|
@ -57,6 +63,8 @@
|
|||
"selector-pseudo-element-colon-notation": "double",
|
||||
"selector-pseudo-element-no-unknown": true,
|
||||
"selector-type-case": "lower",
|
||||
"selector-no-id": true
|
||||
"selector-no-id": true,
|
||||
|
||||
"max-line-length": 120
|
||||
}
|
||||
}
|
||||
|
|
|
@ -28,7 +28,9 @@
|
|||
.icon-container {
|
||||
box-shadow: none;
|
||||
&.success {
|
||||
box-shadow: inset 0 5px 9px 0 #00967d, 0 4px 10px 0 rgba(33, 7, 77, 0.5), 0 2px 12px 0 rgba(35, 255, 181, 0.6);
|
||||
box-shadow: inset 0 5px 9px 0 #00967d,
|
||||
0 4px 10px 0 rgba(33, 7, 77, 0.5),
|
||||
0 2px 12px 0 rgba(35, 255, 181, 0.6);
|
||||
}
|
||||
}
|
||||
&::before {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue