mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
d58edf1d25
* Started on UI makeover for teams * Some small tweaks and fixes * Adjusted settings
28 lines
521 B
Plaintext
28 lines
521 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%;
|
|
}
|
|
|
|
.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;
|
|
}
|
|
}
|