20 lines
224 B
SCSS
20 lines
224 B
SCSS
.Footer {
|
|
height: 30px;
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
position: relative;
|
|
bottom: 0;
|
|
|
|
a {
|
|
padding: 0 1em;
|
|
transition: all 0.2s;
|
|
&:hover {
|
|
opacity: 0.8;
|
|
}
|
|
}
|
|
}
|