Skip to main content

<uizy-footer>

Fixed footer at the bottom of the viewport.

Attributes

AttributeDescription
shadowShadow intensity (1-24)
clip-leftAdd left margin for sidebar
clip-rightAdd right margin for sidebar

Usage

<uizy-footer shadow="12"> © 2024 My App </uizy-footer>

CSS Variables

VariableDefaultDescription
--uizy-footer-height48pxHeight of the footer
--uizy-footer-layer20z-index

Examples

<uizy-footer shadow="12">
<span>© 2024 Company Name</span>
</uizy-footer>
<uizy-footer shadow="6">
<nav>
<a href="#">Privacy</a>
<a href="#">Terms</a>
<a href="#">Contact</a>
</nav>
<span>Made with ❤️</span>
</uizy-footer>

<style>
uizy-footer {
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 1rem;
background: #f5f5f5;
}
uizy-footer nav {
display: flex;
gap: 1rem;
}
</style>
<uizy-footer shadow="12" clip-left clip-right>
Footer respects sidebar widths
</uizy-footer>