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 <redacted>
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 {