diff options
author | Vitaly Takmazov | 2020-05-03 14:10:24 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2020-05-03 14:10:24 +0300 |
commit | de3d0da3eaec03d534ed2d509396c79d166addc7 (patch) | |
tree | b183e238e3e7913b9a9bde900509d12af30fbbc6 /src/main/assets | |
parent | a9521ab38dbc25d55a792d07940e3fc6c674e50a (diff) |
Minor cleanup
Diffstat (limited to 'src/main/assets')
-rw-r--r-- | src/main/assets/embed.js | 2 | ||||
-rw-r--r-- | src/main/assets/style.css | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/src/main/assets/embed.js b/src/main/assets/embed.js index 1fb7f25b..bef6f80c 100644 --- a/src/main/assets/embed.js +++ b/src/main/assets/embed.js @@ -63,7 +63,7 @@ function makeIframe(src, w, h, scrolling = 'no') { let iframe = document.createElement('iframe'); iframe.style.width = w; iframe.style.height = h; - iframe.frameBorder = 0; + iframe.frameBorder = '0'; iframe.scrolling = scrolling; iframe.setAttribute('allowFullScreen', ''); iframe.src = src; diff --git a/src/main/assets/style.css b/src/main/assets/style.css index 96d47930..dc19e6d2 100644 --- a/src/main/assets/style.css +++ b/src/main/assets/style.css @@ -465,7 +465,6 @@ article .tags > a::before, border-bottom: 1px solid #ff339a; } - .msgthread { margin-bottom: 0; } |