mirror of
https://github.com/atom/atom.git
synced 2026-01-15 01:48:15 -05:00
32 lines
536 B
Plaintext
32 lines
536 B
Plaintext
@import "ui-variables";
|
|
|
|
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;
|
|
min-width: 0;
|
|
min-height: 0;
|
|
}
|
|
|
|
atom-workspace-axis.vertical {
|
|
display: flex;
|
|
flex: 1;
|
|
flex-direction: column;
|
|
min-width: 0;
|
|
min-height: 0;
|
|
}
|
|
}
|