framework
framework copied to clipboard
Search input icons overlap
Current Behavior
Search icon and clear input icon overlap.
Steps to Reproduce
- Use/emulate small screen width (820px)
- Enter something into the search input.
- Click on a discussion.
- Icon to empty search box is rendered over/under search icon.
Expected Behavior
No overlap
Screenshots

Environment
- Flarum version: 1.4.0
Output of php flarum info
No response
Possible Solution
No response
Additional Context
No response
seems that can be fixed by removing the margin-left
.Search-input .Button {
float: left;
margin-left: -36px; <-------- here
width: 36px!important;
}