mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
30 lines
439 B
SCSS
30 lines
439 B
SCSS
|
@import '../constants/dimensions';
|
||
|
@import '../constants/colors';
|
||
|
|
||
|
.form-control {
|
||
|
width: 100%;
|
||
|
background: $bg-super-light;
|
||
|
outline: none;
|
||
|
border: 0;
|
||
|
}
|
||
|
|
||
|
.btn {
|
||
|
cursor: pointer;
|
||
|
text-align: center;
|
||
|
padding: $default-padding $default-padding * 1.5;
|
||
|
}
|
||
|
|
||
|
input, button {
|
||
|
padding: $default-padding;
|
||
|
background: none;
|
||
|
border: 0;
|
||
|
outline: 0;
|
||
|
font-size: inherit;
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
}
|
||
|
|
||
|
button {
|
||
|
width: auto;
|
||
|
}
|