Skip to content

Commit

Permalink
fix errors in our scss files
Browse files Browse the repository at this point in the history
  • Loading branch information
ewdurbin committed Mar 17, 2021
1 parent dccb9d2 commit ae5f3d7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions static/sass/_layout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@
$bordertop: lighten( $this-color, 38% );

.#{nth($names, $i)}-navigation {
@include vertical-gradient( $this-color, adjust-lightness( $this-color, -8 ), 30%, 95% );
@include vertical-gradient( $this-color, adjust-color( $this-color, $lightness: -8 ), 30%, 95% );
border-top: 1px solid lighten($this-color, 15%);
border-bottom: 1px solid darken($this-color, 25%);

Expand Down Expand Up @@ -816,7 +816,7 @@
//float: left;
//margin-top: .5em;
}
/* ! This is done the wrong way with SASS. Should be something like \#{$form-text-inputs} with $form-text-inputs as a variable */
/* ! This is done the wrong way with SASS. Should be something like \#{\$form-text-inputs} with \$form-text-inputs as a variable */
@include input_text_types() {
width: 75%;
display: inline-block;
Expand Down
2 changes: 1 addition & 1 deletion static/sass/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2286,7 +2286,7 @@ div.warning {
}

form.deletion-form {
@extend div.warning;
@extend div, .warning;

border-radius: px2em( 10px );
padding: px2em( 15px );
Expand Down

0 comments on commit ae5f3d7

Please sign in to comment.