mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
44 lines
792 B
Plaintext
44 lines
792 B
Plaintext
@import '../constants/dimensions';
|
|
@import '../constants/colors';
|
|
|
|
.cookie-modify.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;
|
|
}
|
|
|
|
td {
|
|
cursor: pointer;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.btn {
|
|
cursor: pointer;
|
|
margin: 0;
|
|
padding: 0 @padding-sm;
|
|
height: @line-height-xs;
|
|
}
|
|
}
|
|
|
|
.cookie-modify__checkboxes {
|
|
padding-top: 0;
|
|
position: relative;
|
|
display: flex;
|
|
justify-content: space-around;
|
|
font-size: medium;
|
|
|
|
label > input {
|
|
vertical-align: middle;
|
|
margin-left: 5px;
|
|
height: 20px;
|
|
width: 20px;
|
|
}
|
|
}
|
|
}
|