4,554
edits
No edit summary |
No edit summary |
||
Line 370: | Line 370: | ||
display: flex; /* Enables Flexbox */ | display: flex; /* Enables Flexbox */ | ||
align-items: center; /* Vertically aligns items in the middle */ | align-items: center; /* Vertically aligns items in the middle */ | ||
justify-content: space-between; | justify-content: space-between; | ||
position: fixed; | position: fixed; | ||
left: 0; | left: 0; | ||
bottom: 0; | bottom: 0; | ||
width: 100%; | width: 100%; | ||
padding: 10px; | padding: 10px; | ||
box-sizing: border-box; | box-sizing: border-box; | ||
} | } | ||
Line 384: | Line 384: | ||
#simpleSearch { | #simpleSearch { | ||
margin-left: 10px; /* Adjust as needed */ | margin-left: 10px; /* Adjust as needed */ | ||
flex-grow: 1; /* Allows the element to grow if necessary / | |||
margin-left: 10px; / Adjust as needed / | |||
text-align: left; / Aligns content to the left */ | |||
} | } | ||
Line 421: | Line 423: | ||
.nrs { | .nrs { | ||
flex-grow: 1; | |||
text-align: center; | |||
} | } | ||