aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+videos/+video-watch/comment/video-comment-add.component.scss
diff options
context:
space:
mode:
authorKimsible <1877318+kimsible@users.noreply.github.com>2020-11-08 11:35:09 +0100
committerGitHub <noreply@github.com>2020-11-08 11:35:09 +0100
commitf34cc2a48e534c96598490e1d13e426f05b63d0f (patch)
tree43d7e61a1be067569babfea31c8b784f42a10d11 /client/src/app/+videos/+video-watch/comment/video-comment-add.component.scss
parent98b94643127d881cbc09a12812185aed44173f16 (diff)
downloadPeerTube-f34cc2a48e534c96598490e1d13e426f05b63d0f.tar.gz
PeerTube-f34cc2a48e534c96598490e1d13e426f05b63d0f.tar.zst
PeerTube-f34cc2a48e534c96598490e1d13e426f05b63d0f.zip
Improve markdown-it emoji list column display (#3253)
Co-authored-by: kimsible <kimsible@users.noreply.github.com> Co-authored-by: Rigel Kent <sendmemail@rigelk.eu>
Diffstat (limited to 'client/src/app/+videos/+video-watch/comment/video-comment-add.component.scss')
-rw-r--r--client/src/app/+videos/+video-watch/comment/video-comment-add.component.scss21
1 files changed, 15 insertions, 6 deletions
diff --git a/client/src/app/+videos/+video-watch/comment/video-comment-add.component.scss b/client/src/app/+videos/+video-watch/comment/video-comment-add.component.scss
index 2be187670..d938e2e28 100644
--- a/client/src/app/+videos/+video-watch/comment/video-comment-add.component.scss
+++ b/client/src/app/+videos/+video-watch/comment/video-comment-add.component.scss
@@ -99,13 +99,22 @@ form {
99 } 99 }
100} 100}
101 101
102.table-emoji { 102.emoji-flex {
103 td { 103 display: flex;
104 &:first-child { 104 flex-flow: row wrap;
105 width: 20px; 105 align-items: center;
106
107 .emoji-flex-item {
108 text-align: left;
109 margin: auto;
110 min-width: 227px;
111 flex: 1;
112
113 code {
114 display: inline-block;
115 vertical-align: middle;
116 margin-left: 5px;
106 } 117 }
107
108 vertical-align: top;
109 } 118 }
110} 119}
111 120