sparkletown/sparkle

View on GitHub
src/components/molecules/Footer/Footer.scss

Summary

Maintainability
Test Coverage
@import "scss/constants";

.Footer {
  display: flex;
  align-items: center;
  justify-content: center;

  border-top: 1px solid var(--accent--over-20a);
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: z(footer);
  width: 100%;
  background-color: $content--under;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 0.7rem;
  height: $footer-height;
  color: #889;

  & > * {
    padding: 0 0.5em;
  }

  a {
    text-decoration: none;
  }
}