Local playlists list: center list and add background to it

This commit is contained in:
James Taylor 2019-09-10 17:57:32 -07:00
parent 27efcaf2b1
commit 21c617faf7

View File

@ -1,6 +1,23 @@
{% set page_title = 'Local playlists' %}
{% extends "base.html" %}
{% block style %}
main{
display: flex;
justify-content: center;
}
ul{
background-color: var(--interface-color);
margin-top: 20px;
padding: 20px;
min-width: 400px;
align-self: start;
}
li{
margin-bottom: 10px;
}
{% endblock style %}
{% block main %}
<ul>
{% for playlist_name, playlist_url in playlists %}