diff options
author | 2022-08-07 13:47:30 +0200 | |
---|---|---|
committer | 2022-08-07 13:47:30 +0200 | |
commit | 745f54970d332a7ed411876ef041b004d6c8dde0 (patch) | |
tree | 7c5c2368d856dfc15044dd4fbb3d68b800cb9abe | |
parent | [feature] Let accounts set default status format, and use this when processin... (diff) | |
download | gotosocial-745f54970d332a7ed411876ef041b004d6c8dde0.tar.xz |
[frontend] style blockquote nicely within content (#742)
-rw-r--r-- | web/source/css/status.css | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/web/source/css/status.css b/web/source/css/status.css index 4badfa33c..705934eb6 100644 --- a/web/source/css/status.css +++ b/web/source/css/status.css @@ -127,6 +127,13 @@ main { .content { word-break: break-word; + + blockquote { + padding: 0.5rem 0 0.5rem 1.5rem; + border-left: 0.2rem solid $sloth_orange1; + margin-left: 1rem; + font-style: italic; + } } } |