mirror of
https://github.com/Kong/insomnia
synced 2024-11-07 22:30:15 +00:00
Font sizing in URL bar
This commit is contained in:
parent
8f38c0cedd
commit
323992b5db
@ -29,14 +29,14 @@ class UrlInput extends Component {
|
|||||||
<form className="tall grid__cell" onSubmit={e => {e.preventDefault(); sendRequest(request)}}>
|
<form className="tall grid__cell" onSubmit={e => {e.preventDefault(); sendRequest(request)}}>
|
||||||
<DebouncingInput
|
<DebouncingInput
|
||||||
type="text"
|
type="text"
|
||||||
className="txt-lg"
|
className="txt-md"
|
||||||
placeholder="http://echo.insomnia.rest/status/200"
|
placeholder="http://echo.insomnia.rest/status/200"
|
||||||
value={request.url}
|
value={request.url}
|
||||||
debounceMillis={1000}
|
debounceMillis={1000}
|
||||||
onChange={onUrlChange}/>
|
onChange={onUrlChange}/>
|
||||||
</form>
|
</form>
|
||||||
<button className="btn" onClick={sendRequest.bind(null, request)}>
|
<button className="btn txt-lg" onClick={sendRequest.bind(null, request)}>
|
||||||
<i className="fa fa-repeat txt-xl"></i>
|
Send
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
|
@ -63,3 +63,7 @@ $breakpoint-sm: 580px;
|
|||||||
.txt-xl {
|
.txt-xl {
|
||||||
font-size: $font-size-xl;
|
font-size: $font-size-xl;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.txt-xxl {
|
||||||
|
font-size: $font-size-xxl;
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user