21 lines
380 B
SCSS
21 lines
380 B
SCSS
.app-footer {
|
|
z-index: 3;
|
|
background-color: $color-white;
|
|
border-top: 1px solid $color-gray-lightest;
|
|
display: flex;
|
|
flex-direction: row-reverse;
|
|
align-items: center;
|
|
padding: $gap * 1.5;
|
|
position: fixed;
|
|
left: 0;
|
|
bottom: 0;
|
|
width: 100%;
|
|
height: $footer-height;
|
|
color: $color-gray-dark;
|
|
font-size: 1.5rem;
|
|
|
|
&__login {
|
|
padding-left: 0.8rem;
|
|
}
|
|
}
|