12 lines
238 B
CSS
12 lines
238 B
CSS
|
.foot {
|
||
|
position: fixed;
|
||
|
bottom: 0;
|
||
|
left: 0;
|
||
|
width: 100%;
|
||
|
height: 30px;
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
background-color: var(--color-dark);
|
||
|
color: var(--color-light);
|
||
|
}
|