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

Commit bbc63ae

Browse files
author
Gustav Lindqvist
committed
Updated version and added padding change for responsivity in the grid
1 parent d4d8496 commit bbc63ae

File tree

4 files changed

+31
-12
lines changed

4 files changed

+31
-12
lines changed

assets/css/style.css

Lines changed: 17 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/css/style.min.css

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"config": {
88
"posts_per_page": 10
99
},
10-
"version": "2.0.0-RC1",
10+
"version": "2.0.0-beta",
1111
"description": "Tell your story! A Ghost theme designed for photoblogging",
1212
"repository": "https://github.com/Reedyn/Saga",
1313
"license": "MIT",

sass/components/_feed--post.scss

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
position: relative;
44
overflow: hidden;
55
margin-bottom: $gutter;
6-
padding: 30px;
6+
padding: 20px;
77
min-height: 25vh;
88
background-color: #585858;
99
background-position: center;
@@ -13,6 +13,7 @@
1313
@include respond-to(tiny) {
1414
}
1515
@include respond-to(small) {
16+
padding: 30px;
1617
}
1718
@include respond-to(medium) {
1819
}
@@ -129,9 +130,15 @@
129130

130131
.post--bottom-content {
131132
position: absolute;
132-
right: 30px;
133-
bottom: 30px;
134-
left: 30px;
133+
right: 20px;
134+
bottom: 16px;
135+
left: 20px;
136+
137+
@include respond-to(small) {
138+
right: 30px;
139+
bottom: 24px;
140+
left: 30px;
141+
}
135142
}
136143
}
137144
}

0 commit comments

Comments
 (0)