mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
8452e8b777
* Fixed duplication kve bug * Some changes * Add proptypes linting * Fixed proptypes even more * Filename linting
29 lines
545 B
Plaintext
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;
|
|
}
|
|
}
|