Skip to content

Commit

Permalink
Lint fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
frjo committed Dec 20, 2024
1 parent 20708f2 commit 1aa7d71
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
5 changes: 3 additions & 2 deletions assets/sass/_reset.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
// stylelint-disable property-no-vendor-prefix
// stylelint-disable property-no-vendor-prefix, property-no-unknown

// Reset browsers to some sane defaults.

// Document
Expand Down Expand Up @@ -90,6 +91,6 @@ samp {

td,
math,
time[datetime*=":"] {
time[datetime*=':'] {
font-variant-numeric: tabular-nums lining-nums;
}
2 changes: 1 addition & 1 deletion assets/sass/base/forms/_forms.scss
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ textarea {

// Make sure textareas without a rows attribute are not tiny.
textarea:not([rows]) {
min-height: 10em
min-height: 10em;
}

// For forms with multibple fields show submit button below the form.
Expand Down
5 changes: 1 addition & 4 deletions assets/sass/mixins/overlay/_overlay.scss
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
@mixin overlay($opacity: '0.5', $color: $nearblack, $color2: $grey-light) {
--color-overlay: $color;
--color-overlay2: $color2;
border-image: linear-gradient(
rgba(var(--color-overlay) / $opacity),
rgba(var(--color-overlay2) / $opacity))
fill 1;
border-image: linear-gradient(rgba(var(--color-overlay) / $opacity), rgba(var(--color-overlay2) / $opacity)) fill 1;
}

0 comments on commit 1aa7d71

Please sign in to comment.