18 lines
352 B
CSS
18 lines
352 B
CSS
#bottomMenu {
|
|
width: 100%;
|
|
height: 8vh;
|
|
background: lightcoral;
|
|
display: flex;
|
|
justify-content: space-evenly;
|
|
}
|
|
|
|
#bottomMenu button {
|
|
background: none;
|
|
border: none;
|
|
font-size: 0.9em;
|
|
margin-bottom: 5px;
|
|
flex-basis: calc(100%/3);
|
|
display: flex;
|
|
align-items: flex-end;
|
|
justify-content: space-evenly;
|
|
} |