insomnia/app/ui/css/components/cookie-editor.less
Gregory Schier 8452e8b777 Some eslint refactoring (#109)
* Fixed duplication kve bug

* Some changes

* Add proptypes linting

* Fixed proptypes even more

* Filename linting
2017-03-07 21:52:17 -08:00

29 lines
545 B
Plaintext

@import '../constants/dimensions';
@import '../constants/colors';
.cookie-editor.modal__body {
overflow: visible;
display: grid;
grid-template-rows: auto minmax(0, 1fr);
table {
input:not([type="checkbox"]) {
padding: @padding-xs @padding-xxs;
width: 100%;
background: none;
}
.btn {
margin: 0;
padding: 0 @padding-sm;
height: @line-height-xs;
}
}
.cookie-editor__editor {
padding: 0 @padding-md @padding-md @padding-md;
overflow-y: auto;
position: relative;
}
}