Skip to content

Commit

Permalink
fix: bottom padding in minimalist-ios-tapbar theme
Browse files Browse the repository at this point in the history
  • Loading branch information
mxilievski committed Jan 23, 2025
1 parent 7a22e0c commit 504f259
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,6 @@ minimalist-ios-tapbar:
a.menu-link[target="_blank"], ha-button-menu, ha-menu-button, [main-title] {
display: none !important;
}
div#view{
transform: initial;
padding: 0 !important;
margin: 0 !important;
width: 100%;
padding-bottom: var(--header-height) !important;
}
.header {
top: auto !important;
bottom: 0px !important;
Expand All @@ -58,7 +51,12 @@ minimalist-ios-tapbar:
background: var( --ha-card-background, var(--card-background-color) );
}
#view {
transform: initial;
padding: 0 !important;
margin: 0 !important;
width: 100%;
padding-top: calc(-1 * var(--header-height)) !important;
padding-bottom: var(--header-height) !important;
}
ha-tabs {
--paper-tabs-selection-bar-color: var(--header-tab-indicator-color) !important;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,6 @@ minimalist-mobile-tapbar:
width: 97%;
}
.: |
div#view{
transform: initial;
padding: 0 !important;
margin: 0 !important;
width: 100%;
padding-bottom: var(--header-height) !important;
}
.header {
top: auto !important;
bottom: 0px !important;
Expand All @@ -51,7 +44,12 @@ minimalist-mobile-tapbar:
padding-bottom: env(safe-area-inset-bottom) !important;
}
#view {
transform: initial;
padding: 0 !important;
margin: 0 !important;
width: 100%;
padding-top: calc(-1 * var(--header-height)) !important;
padding-bottom: var(--header-height) !important;
}
ha-tabs {
--paper-tabs-selection-bar-color: var(--header-tab-indicator-color);
Expand Down

0 comments on commit 504f259

Please sign in to comment.