Skip to content

Commit

Permalink
Fix stylesheet paths.
Browse files Browse the repository at this point in the history
  • Loading branch information
siavashserver committed Dec 10, 2020
1 parent b2f7f75 commit a3f2ff9
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ permalink: /:title.html
highlighter: rouge
markdown: kramdown

exclude: [README.md, css/base-min.css, css/grids-min.css, css/grids-responsive-min.css]
exclude: [README.md]

collections:
changelogs:
Expand All @@ -16,6 +16,7 @@ plugins:
- jekyll-sitemap

sass:
sass_dir: css
style: compressed

# jekyll-seo-tag specific
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
8 changes: 4 additions & 4 deletions css/style.scss
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
---
---

@import 'css/base-min';
@import 'css/grids-min';
@import 'css/grids-responsive-min';
@import 'base-min';
@import 'grids-min';
@import 'grids-responsive-min';

// Page body background color
$body-background-color: hsl(0, 0%, 95%);
Expand Down Expand Up @@ -205,7 +205,7 @@ header.main {
padding-right: 48px;
float: left;
font-size: 2.5em;
background: url("arrow.png") no-repeat right;
background: url("./arrow.png") no-repeat right;
}

nav {
Expand Down

0 comments on commit a3f2ff9

Please sign in to comment.