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)}}>
|
||||
<DebouncingInput
|
||||
type="text"
|
||||
className="txt-lg"
|
||||
className="txt-md"
|
||||
placeholder="http://echo.insomnia.rest/status/200"
|
||||
value={request.url}
|
||||
debounceMillis={1000}
|
||||
onChange={onUrlChange}/>
|
||||
</form>
|
||||
<button className="btn" onClick={sendRequest.bind(null, request)}>
|
||||
<i className="fa fa-repeat txt-xl"></i>
|
||||
<button className="btn txt-lg" onClick={sendRequest.bind(null, request)}>
|
||||
Send
|
||||
</button>
|
||||
</div>
|
||||
)
|
||||
|
@ -63,3 +63,7 @@ $breakpoint-sm: 580px;
|
||||
.txt-xl {
|
||||
font-size: $font-size-xl;
|
||||
}
|
||||
|
||||
.txt-xxl {
|
||||
font-size: $font-size-xxl;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user