New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@phila/phila-ui-app-footer

Package Overview
Dependencies
Maintainers
0
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@phila/phila-ui-app-footer

  • 0.0.18
  • latest
  • npm
  • Socket score

Version published
Maintainers
0
Created
Source

Code Samples

The footer links can be added via props using the Navigation Links format.

  <app-footer
    :links="myFooterLinks"
  />

Or the links can be added using the default slot. The default slot accepts an unordered list of links.

  <app-footer>
    <ul>
      <li>
        <a href="/about">About</a>
      </li>
      <li>
        <a href="/terms-and-conditions">Terms & Conditions</a>
      </li>
    </ul>
  </app-footer>

The footer can be fixed to the bottom of the page, so it's always visible.

  <app-footer
    :is-sticky="true"
  />

Mobile Display

By default the footer is hidden on mobile devices. If the links in the footer are important, they should be added to the Mobile Navigation.

If the footer must be displayed on mobile, set is-hidden-mobile to false.

  <app-footer
    :is-hidden-mobile="false"
  />

Live Examples

Open the iframe below in a new window as the footer is by default hidden on smaller screens

Non-sticky, using the slot

FAQs

Package last updated on 15 Jan 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc