recent_topics: Fix search box not visible after wrapping in safari.

On safari, after search box wraps to next line on smaller widths,
it is not visible due to some flex box default property difference
between chrome and safari. We fix this by resetting default
property.
This commit is contained in:
Aman Agrawal
2020-12-01 07:55:17 +05:30
committed by Tim Abbott
parent bbe1b742c6
commit d0a1d95c89

View File

@@ -77,6 +77,8 @@
#recent_topics_filter_buttons {
margin: 0 10px 0 10px;
display: flex;
/* Search box has no height without this in safari. */
flex: 0 0 auto;
flex-wrap: wrap;
justify-content: flex-start;
}