insomnia/app/ui/css/components/cookieeditor.less
Gregory Schier d58edf1d25 Cleanup before major team features (#72)
* Started on UI makeover for teams

* Some small tweaks and fixes

* Adjusted settings
2016-12-21 15:37:48 -08:00

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;
}
}