22 lines
300 B
CSS
22 lines
300 B
CSS
|
.footer {
|
||
|
position: absolute;
|
||
|
right: 0;
|
||
|
bottom: 0;
|
||
|
left: 0;
|
||
|
padding: 1rem 0;
|
||
|
background-color: #14284c;
|
||
|
}
|
||
|
|
||
|
.footerContent {
|
||
|
margin: 0 auto;
|
||
|
max-width: 1000px;
|
||
|
display: flex;
|
||
|
justify-content: flex-end;
|
||
|
}
|
||
|
|
||
|
.footerItem {
|
||
|
padding: 0 1rem;
|
||
|
color: white;
|
||
|
text-decoration: none;
|
||
|
}
|