songs2slides

A tool that automatically finds song lyrics and creates lyric slideshows
git clone https://git.ashermorgan.net/songs2slides/
Log | Files | Refs | README

commit 7abbc0a8049e549473b6620b1de4c952199152be
parent 092c9cfc00c807efde93e8834c5f13fe2571241f
Author: Asher Morgan <59518073+ashermorgan@users.noreply.github.com>
Date:   Tue, 26 Mar 2024 14:24:34 -0700

Fix styles in global.css

Diffstat:
Msongs2slides/static/global.css | 10+++++++---
1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/songs2slides/static/global.css b/songs2slides/static/global.css @@ -27,19 +27,23 @@ p { margin-bottom: 1rem; } -/* padding and borders */ +/* padding */ header, main { padding: 1rem; } button, input { padding: 0.3rem 0.5rem; - border: 1px solid; - border-radius: 5px; } textarea { padding: 0.5rem; } +/* borders */ +button, input, textarea { + border: 1px solid; + border-radius: 5px; +} + /* colors */ body { color: var(--foreground);