diff options
| author | Shpuld Shpuldson <shpuld@gmail.com> | 2017-11-07 12:22:33 +0200 |
|---|---|---|
| committer | Shpuld Shpuldson <shpuld@gmail.com> | 2017-11-07 12:22:33 +0200 |
| commit | acde0b316c86df2e98815086230abc9a3500f746 (patch) | |
| tree | cbe31353f54f49813e2fae4e9d810d48bd036540 /src | |
| parent | fb8b625d9a0ec6cb08001c8476b971f79e59d2f9 (diff) | |
Changes inside status html: restrict image/video sizes, make blockquotes waste less space.
Diffstat (limited to 'src')
| -rw-r--r-- | src/components/status/status.vue | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/components/status/status.vue b/src/components/status/status.vue index b8f71dd4..cc315a90 100644 --- a/src/components/status/status.vue +++ b/src/components/status/status.vue @@ -185,6 +185,15 @@ .status-content { margin: 3px 15px 4px 0; + img, video { + max-width: 100%; + max-height: 400px; + } + + blockquote { + margin: 0.2em 0 0.2em 2em; + font-style: italic; + } } p { |
