Skip to content

Commit

Permalink
Release version 0.6.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Eduardo Gomez committed Jan 22, 2020
1 parent 531f2af commit c1f768b
Show file tree
Hide file tree
Showing 7 changed files with 39 additions and 56 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ npm-debug.log
node_modules

.DS_Store
.idea
.idea
14 changes: 14 additions & 0 deletions default.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,20 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" />

{{!-- Styles'n'Scripts --}}
<style>
/* This font-face is here to make icons work if the Ghost instance is installed in a subdirectory */
@font-face {
font-family: 'icomoon';
src: url("{{asset 'fonts/icomoon.eot?jcg9f9'}}");
src: url("{{asset 'fonts/icomoon.eot?jcg9f9#iefix'}}") format('embedded-opentype'),
url("{{asset 'fonts/icomoon.ttf?jcg9f9'}}") format('truetype'),
url("{{asset 'fonts/icomoon.woff?jcg9f9'}}") format('woff'),
url("{{asset 'fonts/icomoon.svg?jcg9f9#icomoon'}}") format('svg');
font-weight: normal;
font-style: normal;
font-display: swap;
}
</style>
<link rel="stylesheet" type="text/css" href="{{asset "css/app.css"}}" media="screen" />

{{!-- This #block helper will pull data from the hero partial
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,5 +54,5 @@
"desktop": "assets/screenshot-desktop.jpg",
"mobile": "assets/screenshot-mobile.jpg"
},
"version": "0.6.4"
"version": "0.6.5"
}
47 changes: 14 additions & 33 deletions src/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"aos": "^2.3.4",
"css-vars-ponyfill": "^2.1.2",
"fitvids": "^2.0.0",
"fuse.js": "^3.4.2",
"fuse.js": "^3.4.6",
"headroom.js": "^0.10.3",
"jquery": "^3.3.1",
"lozad": "^1.14.0",
Expand Down
12 changes: 0 additions & 12 deletions src/sass/common/_icons.scss
Original file line number Diff line number Diff line change
@@ -1,17 +1,5 @@
/** Icons */

@font-face {
font-family: 'icomoon';
src: url('../fonts/icomoon.eot?jcg9f9');
src: url('../fonts/icomoon.eot?jcg9f9#iefix') format('embedded-opentype'),
url('../fonts/icomoon.ttf?jcg9f9') format('truetype'),
url('../fonts/icomoon.woff?jcg9f9') format('woff'),
url('../fonts/icomoon.svg?jcg9f9#icomoon') format('svg');
font-weight: normal;
font-style: normal;
font-display: swap;
}

[class^="icon-"], [class*=" icon-"] {
/* use !important to prevent issues with browser extensions that change fonts */
font-family: 'icomoon' !important;
Expand Down
16 changes: 8 additions & 8 deletions src/sass/layouts/_wrapper.scss
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,6 @@
@include respond-to('medium') {
max-width: 960px;
}

&.no-image {
padding-top: 40px;

@include respond-to('medium') {
padding-top: 80px;
}
}
}

&.in-comments {
Expand All @@ -55,3 +47,11 @@
}
}
}

.l-wrapper.in-post.no-image {
padding-top: 40px;

@include respond-to('medium') {
padding-top: 80px;
}
}

0 comments on commit c1f768b

Please sign in to comment.