Skip to content

Commit

Permalink
Fix type
Browse files Browse the repository at this point in the history
Fix typo of scss file.
Replace from '#' to `=`.

Error message:
```bash
Conversion error: Jekyll::Converters::Scss encountered an error while converting 'assets/css/i.scss':
                    Error: Invalid CSS after "...t(startColorstr": expected expression (e.g. 1px, bold), was "#$color,endColorstr" on line 87:77 of _sass/_mixins.scss from line 8:1 of i.scss >> Transform.Microsoft.gradient(startColorstr#$color,endColorstr=$color); ------------------------------------------^
                    ------------------------------------------------
      Jekyll 4.0.0   Please append `--trace` to the `serve` command
                     for any additional information or backtrace.
                    ------------------------------------------------
```
  • Loading branch information
hannut91 committed Oct 26, 2019
1 parent 02271dd commit bcd3c2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _sass/_mixins.scss
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
@mixin box-rgba($r: 60, $g: 3, $b: 12, $opacity: 0.23, $color: #3C3C3C) {
background-color: transparent;
background-color: rgba($r, $g, $b, $opacity);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr#$color,endColorstr=$color);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=$color,endColorstr=$color);
zoom: 1;
}

Expand Down

0 comments on commit bcd3c2f

Please sign in to comment.