diff options
author | James Taylor <user234683@users.noreply.github.com> | 2018-12-26 19:37:15 -0800 |
---|---|---|
committer | James Taylor <user234683@users.noreply.github.com> | 2018-12-26 19:37:15 -0800 |
commit | fcbd8ebef6f4b3648f9b04cb8b7788fed4aeb719 (patch) | |
tree | 73625c7c9a30c742c76cb055219ab6be9d959a99 /youtube/comments.css | |
parent | dfbd7778d10c15cf2e12e9007beba5458a3f3ab1 (diff) | |
download | yt-local-fcbd8ebef6f4b3648f9b04cb8b7788fed4aeb719.tar.lz yt-local-fcbd8ebef6f4b3648f9b04cb8b7788fed4aeb719.tar.xz yt-local-fcbd8ebef6f4b3648f9b04cb8b7788fed4aeb719.zip |
Added account selection to comment boxes
Diffstat (limited to 'youtube/comments.css')
-rw-r--r-- | youtube/comments.css | 22 |
1 files changed, 18 insertions, 4 deletions
diff --git a/youtube/comments.css b/youtube/comments.css index 79d88c3..5fd9063 100644 --- a/youtube/comments.css +++ b/youtube/comments.css @@ -23,15 +23,29 @@ width: 100%; } +.comment-form{ + display: grid; + align-content: start; + justify-items: start; + align-items: start; +} + #comment-account-options{ + display:grid; + grid-auto-flow: column; + grid-column-gap: 10px; + margin-top:10px; + margin-bottom:10px; + } + #comment-account-options a{ + margin-left:10px; + } + .comments-area{ display:grid; } - .comment-form{ - display:contents; - } .comments-area textarea{ resize: vertical; - margin-top:10px; + justify-self:stretch; } .post-comment-button{ margin-top:10px; |