mirror of
https://github.com/pulsar-edit/pulsar.git
synced 2025-01-06 06:28:33 +03:00
9fb97b093f
So text is readable on top of @app-background-color
38 lines
606 B
Plaintext
38 lines
606 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: block;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
position: relative;
|
|
color: @text-color;
|
|
background-color: @app-background-color;
|
|
font-family: @font-family;
|
|
|
|
atom-workspace-axis.horizontal {
|
|
display: -webkit-flex;
|
|
height: 100%;
|
|
}
|
|
|
|
atom-workspace-axis.vertical {
|
|
display: -webkit-flex;
|
|
-webkit-flex: 1;
|
|
-webkit-flex-flow: column;
|
|
}
|
|
}
|