decrease padding on list header

This commit is contained in:
jeffvli
2026-04-05 03:49:31 -07:00
parent 4fd56281d5
commit 031d365262
4 changed files with 4 additions and 3 deletions
@@ -4,6 +4,7 @@
flex-direction: column !important; flex-direction: column !important;
width: 100%; width: 100%;
height: 100%; height: 100%;
padding-block: var(--theme-spacing-xs);
padding-right: var(--theme-spacing-md); padding-right: var(--theme-spacing-md);
outline: none; outline: none;
border: none; border: none;
@@ -97,7 +97,7 @@
justify-content: center; justify-content: center;
width: 100%; width: 100%;
height: 100%; height: 100%;
padding: var(--theme-spacing-sm); padding: 0 var(--theme-spacing-xs);
} }
.title-wrapper.hidden { .title-wrapper.hidden {
@@ -1,5 +1,5 @@
.filter-bar { .filter-bar {
z-index: 1; z-index: 1;
padding: var(--theme-spacing-sm); padding: var(--theme-spacing-xs);
border-bottom: 1px solid var(--theme-colors-border); border-bottom: 1px solid var(--theme-colors-border);
} }
@@ -6,7 +6,7 @@
width: 100%; width: 100%;
max-width: var(--theme-content-max-width); max-width: var(--theme-content-max-width);
height: 100%; height: 100%;
padding: 0 1rem; padding: 0 var(--theme-spacing-sm);
} }
.play-button-container { .play-button-container {