Use a class instead of id for horizontal element

This commit is contained in:
Kevin Sawicki
2013-12-02 08:25:48 -08:00
parent 98694e5407
commit bc4ceb189c
2 changed files with 2 additions and 2 deletions

View File

@@ -55,7 +55,7 @@ class WorkspaceView extends View
# Private:
@content: (state) ->
@div id: 'workspace', tabindex: -1, =>
@div id: 'horizontal', outlet: 'horizontal', =>
@div outlet: 'horizontal', =>
@div id: 'vertical', outlet: 'vertical', =>
@div outlet: 'panes'

View File

@@ -28,7 +28,7 @@ h6 {
background-color: @app-background-color;
font-family: @font-family;
#horizontal {
.horizontal {
display: -webkit-flex;
height: 100%;
}