jsketcher/modules/ui/components/Window.less
2018-07-03 21:30:11 -07:00

32 lines
558 B
Text

@import '../styles/theme.less';
@import '../styles/mixins.less';
.root {
position: absolute;
z-index: 1;
background-color: @bg-color-alt;
display: flex;
flex-direction: column;
}
.bar {
display: flex;
align-items: baseline;
justify-content: space-between;
background-color: @bg-color;
line-height: 1;
cursor: default;
border-bottom: 1px solid @border-color;
padding-left: 6px;
}
.button {
display: inline-block;
padding: 6px 5px 6px 5px;
.button-behavior(@color-danger);
}
.content {
overflow-y: auto;
flex-grow: 1;
}