insomnia/app/ui/css/components/wrapper.less
Gregory Schier 2b6f02f6ca Migrate persistent redux stores to DB models (#70)
* Removed RequestGroupMeta reducer

* Converted rest of reducers to DB models
2016-11-30 17:50:59 -08:00

81 lines
1.4 KiB
Plaintext

@import '../constants/dimensions';
@import '../constants/colors';
.wrapper {
background-color: @bg-super-dark;
color: @font-super-dark-bg;
display: grid;
grid-template-rows: minmax(0, 0.5fr) minmax(0, 0.5fr);
height: 100%;
width: 100%;
.sidebar {
grid-column-start: 1;
grid-row-start: 1;
grid-row-end: span 2;
min-width: 0;
}
.drag {
grid-row-start: 1;
grid-row-end: span 2;
position: relative;
& > * {
//background-color: rgba(255, 0, 0, 0.2);
cursor: ew-resize;
position: absolute;
height: 100%;
z-index: 9;
width: @drag-width;
top: 0;
// More to the right so it doesn't cover scroll bars
left: -@drag-width / 8;
}
}
.request-pane {
min-width: 0;
grid-column-start: 3;
grid-row-start: 1;
grid-row-end: span 2;
background: inherit;
}
.response-pane {
min-width: 0;
grid-column-start: 5;
grid-row-start: 1;
grid-row-end: span 2;
background: inherit;
}
}
.wrapper--vertical {
.request-pane {
grid-column-start: 3;
grid-column-end: span 3;
grid-row-start: 1;
grid-row-end: span 1;
}
.response-pane {
grid-column-start: 3;
grid-column-end: span 3;
grid-row-start: 2;
grid-row-end: span 1;
}
.drag--pane {
display: none;
}
}
@media (max-width: @breakpoint-md) {
.wrapper {
.wrapper--vertical();
}
}