Skip to content

Commit

Permalink
chore: lint again
Browse files Browse the repository at this point in the history
  • Loading branch information
danirod committed Mar 2, 2024
1 parent 7c33f78 commit faa98d2
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 9 deletions.
7 changes: 4 additions & 3 deletions .stylelintrc.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"plugins": ["stylelint-scss"],
"extends": ["stylelint-config-standard-scss"],
"extends": ["stylelint-config-recommended"],
"customSyntax": "postcss-scss",
"rules": {
"selector-class-pattern": null
"selector-class-pattern": null,
"function-no-unknown": [true, { "ignoreFunctions": ["saturation"] } ]
}
}
2 changes: 1 addition & 1 deletion app/javascript/dashboard/auth.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
body.auth {
background: color(#039 s(- 25%));
background: color(#039 saturation(- 25%));

svg {
fill: white;
Expand Down
6 changes: 2 additions & 4 deletions app/javascript/dashboard/dashboard.scss
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
@use "sass:color";

html {
font-size: 14px;
}

.navbar-brand .makigas-logo {
fill: currentColor;
fill: currentcolor;
height: 100%;
}

Expand Down Expand Up @@ -52,6 +50,6 @@ form.button_to {
}
}

[data-bs-theme=dark] {
[data-bs-theme="dark"] {
--bs-danger-rgb: 230,113,124;
}
2 changes: 1 addition & 1 deletion app/javascript/dashboard/videos.scss
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ body.page-videos {
}
}

@media (min-width: 768px) {
@media (width >= 768px) {
button.toggle-expand {
display: none;
}
Expand Down

0 comments on commit faa98d2

Please sign in to comment.