已解决 最新cadmod 3.4版本下需改为
/* 调整页面顶端距离 */
ha-app-layout, div#view {
transform: initial;
padding: 0 !important;
margin: 0 !important;
width: 100%;
padding-bottom: var(--header-height) !important;
}
/* 移动导航栏至下端 */
app-header, div.header {
top: auto !important;
justify-content: center; /* 水平居中 */
bottom: 0px !important;
box-shadow: var(--footer-shadow);
height: var(--header-height) !important;
}
/* 导航栏上端距离 */
app-toolbar, div.toolbar {
height: var(--header-base-height) !important;
padding-bottom: env(safe-area-inset-bottom) !important;
}
|