Files
atom/static/workspace-view.less
simurai 45839f3b92 Relative position atom-workspace-axis
This let's packages use position: absolute and be contained to atom-workspace-axis elements.
2016-03-25 11:06:07 +09:00

43 lines
654 B
Plaintext

@import "ui-variables";
@import "octicon-mixins";
@font-face { .octicon-font(); }
html {
font-family: @font-family;
font-size: @font-size;
}
html,
body {
width: 100%;
height: 100%;
overflow: hidden;
}
atom-workspace {
display: flex;
flex-direction: column;
height: 100%;
overflow: hidden;
position: relative;
color: @text-color;
background-color: @app-background-color;
font-family: @font-family;
atom-workspace-axis {
position: relative;
}
atom-workspace-axis.horizontal {
display: flex;
flex: 1;
}
atom-workspace-axis.vertical {
display: flex;
flex: 1;
flex-direction: column;
}
}