mirror of
https://github.com/Kong/insomnia
synced 2024-11-12 17:26:32 +00:00
31 lines
456 B
SCSS
31 lines
456 B
SCSS
@import '../constants/dimensions';
|
|
@import '../constants/colors';
|
|
|
|
.form-control {
|
|
outline: none;
|
|
border: 0;
|
|
height: $form-height;
|
|
}
|
|
|
|
.btn {
|
|
cursor: pointer;
|
|
text-align: center;
|
|
padding: $default-padding $default-padding * 1.5;
|
|
}
|
|
|
|
input, button {
|
|
box-sizing: border-box;
|
|
padding: $default-padding;
|
|
font-size: inherit;
|
|
background: none;
|
|
border: 0;
|
|
outline: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
margin: 0;
|
|
}
|
|
|
|
button {
|
|
width: auto;
|
|
}
|