Fix: Reduced icon padding in My Media (small) buttons and side margin in their container #46

This removes the extra unintended indentation on the sides of their container.
This commit is contained in:
lscambo13
2025-03-28 06:55:59 -07:00
parent edcd66abac
commit ca1b03e125

View File

@@ -541,11 +541,12 @@ html {
@media (max-width: 50em) { @media (max-width: 50em) {
.homeLibraryButton { .homeLibraryButton {
width: 45% !important; width: 45.6% !important;
} }
} }
.homeLibraryButton { .homeLibraryButton {
padding-inline-start: .25em;
min-width: 15%; min-width: 15%;
} }
@@ -1644,11 +1645,11 @@ div[data-role=controlgroup] a.ui-btn-active {
background-color: var(--highlightOutlineColor); background-color: var(--highlightOutlineColor);
} }
[dir=ltr] .padded-left.vertical-wrap { [dir=ltr] .padded-left.vertical-wrap:not(div:has(.homeLibraryButton)) {
padding-left: 5% !important; padding-left: 5% !important;
} }
[dir=ltr] .padded-right.vertical-wrap { [dir=ltr] .padded-right.vertical-wrap:not(div:has(.homeLibraryButton)) {
padding-right: 5% !important; padding-right: 5% !important;
} }