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

Commit

Permalink
Updated version and added padding change for responsivity in the grid
Browse files Browse the repository at this point in the history
  • Loading branch information
Gustav Lindqvist committed Jul 14, 2018
1 parent d4d8496 commit bbc63ae
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 12 deletions.
22 changes: 17 additions & 5 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.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"config": {
"posts_per_page": 10
},
"version": "2.0.0-RC1",
"version": "2.0.0-beta",
"description": "Tell your story! A Ghost theme designed for photoblogging",
"repository": "https://github.com/Reedyn/Saga",
"license": "MIT",
Expand Down
15 changes: 11 additions & 4 deletions sass/components/_feed--post.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
position: relative;
overflow: hidden;
margin-bottom: $gutter;
padding: 30px;
padding: 20px;
min-height: 25vh;
background-color: #585858;
background-position: center;
Expand All @@ -13,6 +13,7 @@
@include respond-to(tiny) {
}
@include respond-to(small) {
padding: 30px;
}
@include respond-to(medium) {
}
Expand Down Expand Up @@ -129,9 +130,15 @@

.post--bottom-content {
position: absolute;
right: 30px;
bottom: 30px;
left: 30px;
right: 20px;
bottom: 16px;
left: 20px;

@include respond-to(small) {
right: 30px;
bottom: 24px;
left: 30px;
}
}
}
}

0 comments on commit bbc63ae

Please sign in to comment.