Use ‘atom-pane-axis’ custom tag name for PaneAxisElement

This commit is contained in:
Nathan Sobo
2014-10-08 11:32:58 -07:00
parent ee9284e228
commit ddf36a013c
6 changed files with 27 additions and 29 deletions

View File

@@ -7,13 +7,13 @@
display: -webkit-flex;
-webkit-flex: 1;
.pane-column {
atom-pane-axis.vertical {
display: -webkit-flex;
-webkit-flex: 1;
-webkit-flex-direction: column;
}
.pane-row {
atom-pane-axis.horizontal {
display: -webkit-flex;
-webkit-flex: 1;
-webkit-flex-direction: row;

View File

@@ -28,14 +28,14 @@ h6 {
background-color: @app-background-color;
font-family: @font-family;
.horizontal {
> .horizontal {
display: -webkit-flex;
height: 100%;
}
.vertical {
display: -webkit-flex;
-webkit-flex: 1;
-webkit-flex-flow: column;
> .vertical {
display: -webkit-flex;
-webkit-flex: 1;
-webkit-flex-flow: column;
}
}
}