owncast/web/components/ui/Footer/Footer.module.scss
Nathan 32c3f6a9b6
fix: #2668 Page Vertical Spacing Issues (#2863)
* fix: #2668 Page Vertical Spacing Issues

* Update test to reflect mobile work

* chore: refactor action buttons

---------

Co-authored-by: thisProjects <wibbet@wobbet.com>
Co-authored-by: Gabe Kangas <gabek@real-ity.com>
2023-04-26 15:31:23 -07:00

48 lines
923 B
SCSS

@import '../../../styles/mixins.scss';
.footer {
display: flex;
align-items: center;
flex-wrap: wrap;
height: var(--footer-height);
justify-content: space-between;
flex-direction: row;
background-color: var(--theme-color-background-header);
color: var(--theme-color-components-text-on-dark);
font-family: var(--theme-text-body-font-family);
padding: 0.6rem 1rem;
font-size: 0.75rem;
font-weight: 400;
border-top: 1px solid rgba(214, 211, 211, 0.5);
@include screen(mobile) {
position: fixed;
bottom: 0;
}
@include screen(tablet) {
font-size: 10px;
position: fixed;
bottom: 0;
}
@include screen(desktop) {
display: flex;
}
a {
color: var(--theme-color-components-text-on-dark);
text-decoration: none;
}
.links {
column-gap: 2rem;
width: auto;
display: flex;
justify-content: space-between;
flex-direction: row;
}
}