diff options
author | r <r@freesoftwareextremist.com> | 2019-12-14 10:57:14 +0000 |
---|---|---|
committer | r <r@freesoftwareextremist.com> | 2019-12-14 10:57:14 +0000 |
commit | 59eaff95120bc1278f37f95fc74bc2e2518b9ef1 (patch) | |
tree | 0fc673dc5c797daa83f7924b4f818e125fefe44d /static | |
parent | 3847954687ee6aa9b89096da11d3919dfe70049e (diff) | |
download | bloat-59eaff95120bc1278f37f95fc74bc2e2518b9ef1.tar.gz bloat-59eaff95120bc1278f37f95fc74bc2e2518b9ef1.zip |
Show retweet info in status
Diffstat (limited to 'static')
-rw-r--r-- | static/main.css | 24 |
1 files changed, 23 insertions, 1 deletions
diff --git a/static/main.css b/static/main.css index e81de2a..5420e40 100644 --- a/static/main.css +++ b/static/main.css @@ -1,6 +1,9 @@ +.status-container-container { + margin: 16px 0; +} + .status-container { display: flex; - margin: 16px 0; } .status-content { @@ -107,3 +110,22 @@ .signin-form input { margin: 4px 0; } + +.retweet-info { + margin: 8px 0 4px 24px; +} + +.retweet-info .status-profile-img { + height: 24px; + width: 24px; + margin-bottom: -8px; + object-fit: contain; +} + +.retweet-info .status-dname{ + margin-left: 4px +} + +.retweet-info .icon.dripicons-retweet.retweeted { + vertical-align: sub; +} |