diff options
author | amzrk2 | 2020-04-20 16:53:59 +0800 |
---|---|---|
committer | amzrk2 | 2020-04-20 16:53:59 +0800 |
commit | 0f2b7dff157e33660048d0b7fe7e014609fce6ab (patch) | |
tree | ca5d3e77d86c988ade9bf95a021c179a1c82e762 /assets | |
parent | 772d7335d3fb01cfd95a886e6a535f7f7e7ed979 (diff) | |
download | hugo-theme-fuji-0f2b7dff157e33660048d0b7fe7e014609fce6ab.tar.gz hugo-theme-fuji-0f2b7dff157e33660048d0b7fe7e014609fce6ab.tar.bz2 hugo-theme-fuji-0f2b7dff157e33660048d0b7fe7e014609fce6ab.zip |
Add border to markdown images
Diffstat (limited to 'assets')
-rw-r--r-- | assets/sass/_markdown.scss | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/assets/sass/_markdown.scss b/assets/sass/_markdown.scss index 26630e3..4241caf 100644 --- a/assets/sass/_markdown.scss +++ b/assets/sass/_markdown.scss @@ -31,6 +31,11 @@ } @include link-secondary(); + + img { + border: 2px solid $color-secondary; + border-radius: 1px; + } } #post-content { |