diff options
author | Linux in a Bit <105567407+LinuxinaBit@users.noreply.github.com> | 2024-09-23 12:27:34 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-23 14:27:34 +0200 |
commit | 8853ffead3f12778e43f08656c767690fbea76ed (patch) | |
tree | c6ee25779fd1d0d11a29fdda73e337ed235918df /main/data | |
parent | d20553a111af4fb69e19ba8caeb0044035086c43 (diff) | |
download | dino-8853ffead3f12778e43f08656c767690fbea76ed.tar.gz dino-8853ffead3f12778e43f08656c767690fbea76ed.zip |
Change message padding/margins (#1564)
3px padding on top and bottom of all messages
10px margin on top of messages with usernames
This improves readability among other things.
Co-authored-by: Linux in a Bit <105567407+RageGamerBoi@users.noreply.github.com>
Diffstat (limited to 'main/data')
-rw-r--r-- | main/data/style.css | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/main/data/style.css b/main/data/style.css index 5a70ba83..5b9da21d 100644 --- a/main/data/style.css +++ b/main/data/style.css @@ -49,7 +49,11 @@ window.dino-main .dino-conversation .message-box.highlight:not(.highlight-once) } window.dino-main .dino-conversation .message-box { - padding: 6px 15px 6px 15px; + padding: 3px 15px 3px 15px; +} + +window.dino-main .dino-conversation .has-skeleton { + margin-top: 10px; } window.dino-main .dino-conversation .message-box:not(.has-skeleton) { |