diff options
author | Vitaly Takmazov | 2024-06-06 00:46:45 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2024-06-06 00:46:45 +0300 |
commit | f2e60f607dbd2a8ba6f3ca2b77ef918caa06b148 (patch) | |
tree | cc7b80cff41850d232a2359f006320cdea7dfbde /src/main/assets | |
parent | 97bd55d5a28a72913d05a09fde0d810050c24d61 (diff) |
styling: do not allow overflow on message content container
Diffstat (limited to 'src/main/assets')
-rw-r--r-- | src/main/assets/style.css | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/main/assets/style.css b/src/main/assets/style.css index 1172b3f0..99cefffa 100644 --- a/src/main/assets/style.css +++ b/src/main/assets/style.css @@ -363,8 +363,7 @@ article { background: var(--text-background-color); border: 1px solid var(--border-color); line-height: 140%; - margin-bottom: 10px; - overflow: auto; + margin-bottom: 10px; } article .h, article #postmsg, @@ -375,6 +374,9 @@ article #postmsg, .msg-cont .msg-header { padding: 20px; } +.page-content { + overflow: auto; +} article time { color: #88958d; |