20 lines
292 B
CSS
20 lines
292 B
CSS
.footer{
|
|
width: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
height: fit-content;
|
|
padding: 2rem;
|
|
}
|
|
|
|
.footerContent {
|
|
display: flex;
|
|
width: 100%;
|
|
justify-content: center;
|
|
gap: 2rem;
|
|
}
|
|
|
|
.link {
|
|
color: black;
|
|
width: fit-content;
|
|
text-align: center;
|
|
} |