26 lines
447 B
SCSS
26 lines
447 B
SCSS
#site-footer {
|
|
background-color: var(--color-txt);
|
|
color: var(--color-bg);
|
|
width: 100vw;
|
|
position: relative;
|
|
left: calc(var(--padding-body)*-1);
|
|
height: calc(var(--spacing)*2);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
|
|
|
|
a {
|
|
text-decoration: none;
|
|
&:hover {
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
|
|
|
|
.p__small {
|
|
font-size: var(--fs-x-small);
|
|
text-align: center;
|
|
}
|
|
|
|
}
|