diff options
author | Mole Shang <[email protected]> | 2023-05-01 16:30:53 +0800 |
---|---|---|
committer | Mole Shang <[email protected]> | 2023-05-01 16:41:03 +0800 |
commit | c217e580ee111873cc14195b62574b05c32dad66 (patch) | |
tree | 418872f8ee4bc3c1c963eaea33f3b3cb4d245b11 /sass | |
parent | 2ab777d5827681c6464ac9f705567bb773f6b660 (diff) | |
download | Seje2-c217e580ee111873cc14195b62574b05c32dad66.tar.gz Seje2-c217e580ee111873cc14195b62574b05c32dad66.tar.bz2 Seje2-c217e580ee111873cc14195b62574b05c32dad66.zip |
templates/macros: abstract post-meta section to a new macro
Diffstat (limited to 'sass')
-rw-r--r-- | sass/style.scss | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/sass/style.scss b/sass/style.scss index 1aa7bc4..706584a 100644 --- a/sass/style.scss +++ b/sass/style.scss @@ -14,6 +14,16 @@ body { } } +// General divider used in span +.divider:before { + padding: 0 16px; + content: "//"; +} + +.tag { + padding: 6px; + } + @import "_partial/_header"; @import "_partial/_post"; @import "_partial/_archive"; |