diff options
Diffstat (limited to 'youtube/static/local_playlist.css')
-rw-r--r-- | youtube/static/local_playlist.css | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/youtube/static/local_playlist.css b/youtube/static/local_playlist.css index bd68c5b..1f6a654 100644 --- a/youtube/static/local_playlist.css +++ b/youtube/static/local_playlist.css @@ -432,6 +432,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 { @@ -524,4 +530,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; + } } |