🎨 Ajout d'un titre a l'icone de recherche
parent
f480eff8b8
commit
e5f2a55e17
|
@ -1,9 +1,10 @@
|
|||
#searchButton button {
|
||||
margin: 0.6em 0;
|
||||
border: none;
|
||||
font-size: 110%;
|
||||
padding: 0 .6em;
|
||||
}
|
||||
#searchButton i {
|
||||
font-size: 180%;
|
||||
}
|
||||
#searchButton {
|
||||
display: flex;
|
||||
|
|
|
@ -44,12 +44,11 @@ export default class SearchButton extends Component {
|
|||
<SearchBar showDefaultList={false} finally={this.close} rules={flatRules} />
|
||||
</Overlay>
|
||||
) : (
|
||||
<button onClick={() => this.setState({ visible: true })}>
|
||||
<i
|
||||
style={{ color: this.props.colours.colour }}
|
||||
className="fa fa-search"
|
||||
aria-hidden="true"
|
||||
/>
|
||||
<button
|
||||
onClick={() => this.setState({ visible: true })}
|
||||
style={{ color: this.props.colours.colour }}
|
||||
>
|
||||
<i className="fa fa-search" aria-hidden="true" /> Recherche
|
||||
</button>
|
||||
)}
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue