mirror of
https://github.com/pulsar-edit/pulsar.git
synced 2024-11-10 10:17:11 +03:00
6d0536886b
everywhere `min-width: 0;` is already used.
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;
|
|
}
|
|
}
|