Android - search box not centered
Closed this issue · 2 comments
TomCohenDev commented
Yarden-zamir commented
This is because of width: max-content;
width: -webkit-fill-available;
works as expected but has the firefox issue Yarden-zamir/obsidian-zola-plus#13. Need to find something that works for both
Yarden-zamir commented
Fixed by using both
width: -webkit-fill-available;
width: -moz-available;```