diff options
Diffstat (limited to 'youtube/static/comments.css')
-rw-r--r-- | youtube/static/comments.css | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/youtube/static/comments.css b/youtube/static/comments.css index 3d8ff25..eff4c73 100644 --- a/youtube/static/comments.css +++ b/youtube/static/comments.css @@ -245,6 +245,12 @@ label[for=options-toggle-cbox] { .footer { grid-area: footer; + display: grid; + grid-template-columns: auto; + align-items: center; + justify-content: center; + margin: auto; + text-align: center; } .footer > p { @@ -280,4 +286,15 @@ label[for=options-toggle-cbox] { z-index: 1; position: absolute; } + + .footer { + display: grid; + grid-template-columns: repeat(3, auto); + grid-column-gap: 2rem; + align-items: center; + justify-content: center; + text-align: center; + margin-top: 1rem; + margin-bottom: 1rem; + } } |