diff --git a/CHANGELOG.md b/CHANGELOG.md index 85e4e81..4c8ef65 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,6 @@ +- BREAKING + - remove `geekblogAnchorLeft`; + for a better spacing left-side anchors were removed - ENHANCEMENT - - slightly change the date formate displayed on posts - - use `.Lastmod` instead of `.Date` on posts - the date on updated posts will be prefixed with `Updated on` string - modifications from the same day are ignored - - add read time indicator - - add basic post metadata to posts single view + - display page metadata only on content type `posts` + - add a small radius to feature images diff --git a/src/sass/_base.scss b/src/sass/_base.scss index c130a8a..3995ab1 100644 --- a/src/sass/_base.scss +++ b/src/sass/_base.scss @@ -45,7 +45,7 @@ h6 { h4, h5, h6 { - font-size: 1rem !important; + font-size: 1rem !important; } a { @@ -271,6 +271,7 @@ img { min-height: 180px; object-fit: cover; overflow: hidden; + border-radius: 3px; } span { @@ -281,11 +282,12 @@ img { padding: $padding-4; font-size: 0.8em; color: $gray-200; + border-radius: 3px 0; } a:hover, a:visited { - color: $gray-200!important; + color: $gray-200 !important; } } @@ -312,8 +314,8 @@ img { } img { - max-width: 100%; - height: auto; + max-width: 100%; + height: auto; } } @@ -362,7 +364,7 @@ img { a:after { font-family: GeekblogIcons; content: "\ea17"; - margin-top: -.125em; + margin-top: -0.125em; } } @@ -372,7 +374,7 @@ img { a::before { font-family: GeekblogIcons; content: "\ea18"; - margin-top: -.125em; + margin-top: -0.125em; } } }