diff options
Diffstat (limited to 'youtube/static/channel.css')
-rw-r--r-- | youtube/static/channel.css | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/youtube/static/channel.css b/youtube/static/channel.css index 467bb0d..aefd769 100644 --- a/youtube/static/channel.css +++ b/youtube/static/channel.css @@ -462,6 +462,12 @@ hr { .footer { grid-area: footer; + display: grid; + grid-template-columns: auto; + align-items: center; + justify-content: center; + margin: auto; + text-align: center; } .footer > p { @@ -554,4 +560,15 @@ hr { grid-row-gap: 1rem; grid-column-gap: 1rem; } + + .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; + } } |