Skip to content
This repository has been archived by the owner on Nov 12, 2021. It is now read-only.

Commit

Permalink
Fixed display issue on medium width displays. Removed subscriber inte…
Browse files Browse the repository at this point in the history
…gration since that is now built into ghost.
  • Loading branch information
Reedyn committed Feb 24, 2021
1 parent 98eaf61 commit 7bfa064
Show file tree
Hide file tree
Showing 10 changed files with 13 additions and 388 deletions.
148 changes: 4 additions & 144 deletions assets/css/style.css

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions assets/css/style.min.css

Large diffs are not rendered by default.

5 changes: 1 addition & 4 deletions default.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<link href="{{asset 'css/style.min.css'}}" rel="stylesheet" type="text/css">
<link href="{{asset 'favicon.ico'}}" rel="shortcut icon">
{{ghost_head}}
<meta name="theme" content="Saga v2.1.0">
<meta name="theme" content="Saga v2.1.1">
</head>
<body class="{{#is "index"}}index {{/is}}{{body_class}}">
<a href="#main" class="skip-link">{{t "Skip to main content"}}</a>
Expand All @@ -19,9 +19,6 @@
<footer role="contentinfo" class="footer animated hidden@print fadeIn" id="footer">
{{> footer}}
</footer>
{{#if @labs.members}}
{{>subscriber-form}}
{{/if}}
<script type="text/javascript" src="{{asset 'js/Saga.js'}}"></script>
{{ghost_foot}}
</body>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"name": "Gustav Lindqvist",
"email": "[email protected]"
},
"version": "2.1.0",
"version": "2.1.1",
"engines": {
"ghost-api": "v3"
},
Expand Down
48 changes: 0 additions & 48 deletions partials/subscriber-form.hbs

This file was deleted.

2 changes: 1 addition & 1 deletion sass/05.objects/grid.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
display: grid;
grid-auto-flow: dense;
grid-gap: $gutter;
grid-template-columns: repeat(auto-fit, minmax($medium, 1fr));
grid-template-columns: repeat(auto-fit, minmax(35rem, 1fr));
.post {
margin-bottom: 0;
}
Expand Down
4 changes: 2 additions & 2 deletions sass/06.components/feed.post.scss
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,10 @@
a {
display: inline-block;
padding: .6rem;
border: .1rem solid rgb(255, 255, 255);
border: .1rem solid white;
margin-right: .3rem;
margin-bottom: .3rem;
color: rgb(255, 255, 255);
color: white;
float: left;
font-size: $font-size--small;
line-height: 1;
Expand Down
2 changes: 1 addition & 1 deletion sass/06.components/post.read-more.scss
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
left: 0;
width: 100%;
height: 100%;
background: rgba(black, .7);
background: rgba(black, .4);
content: "";
}
}
Expand Down
184 changes: 0 additions & 184 deletions sass/06.components/subscribe.scss

This file was deleted.

2 changes: 1 addition & 1 deletion tag.hbs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{{!< default}}
<header role="banner" id="header" class="header {{#if tag.feature_image}}cover-image {{/if}}animated fadeIn"{{#if tag.feature_image}} style="background-image: url({{img_url tag.feature_image size="huge"}})"{{/if}}>
<header role="banner" id="header" class="header -dark {{#if tag.feature_image}}cover-image {{/if}}animated fadeIn"{{#if tag.feature_image}} style="background-image: url({{img_url tag.feature_image size="huge"}})"{{/if}}>
<section id="top-navigation" class="header--top" aria-label="">
{{>header-navigation}}
</section>
Expand Down

0 comments on commit 7bfa064

Please sign in to comment.