luci-theme-bootstrap: match footer with header

Match footer with header
padding left and right so they are
aligned (header uses 1180px,
but footer was using 940px).

Signed-off-by: Joshua Criss <owlsy@outlook.com.au>
This commit is contained in:
Joshua Criss
2026-04-02 15:44:43 +11:00
committed by Paul Donald
parent e1b548545d
commit ec33f41105

View File

@@ -1371,8 +1371,9 @@ footer {
font-size: 12px;
color: var(--text-color-medium);
/* the redundant properties below work around a csstidy bug */
padding-left: calc((100% - 940px) / 2);
padding-right: calc((100% - 940px) / 2);
/* Match footer with header padding left and right so they are aligned (header uses 1180px, but footer was using 940px) */
padding-left: calc((100% - 1180px) / 2);
padding-right: calc((100% - 1180px) / 2);
}
footer a {