Archived
1
0
Fork 0
This repository has been archived on 2026-04-03. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
httpcb/app/assets/sass/layout/_footer.scss

42 lines
741 B
SCSS

.footer {
@extend .container;
display: flex;
align-items: center;
column-gap: $footer-spacing;
min-height: $footer-height;
a {
color: $footer-link-color;
font-weight: 700;
&:hover,
&:active {
color: $footer-link-hover-color;
}
}
&-left {
margin-left: $footer-spacing;
}
&-right {
display: flex;
justify-content: right;
margin-right: $footer-spacing;
}
&-left,
&-right {
flex: 1;
}
// Top button
&-button-top {
@extend .button;
@extend .button-round;
@include button-variant($footer-link-color, white, white);
font-size: 1.5em;
box-shadow: 0 2px 2px rgba(0, 0, 0, .25);
}
}