Skip to content
This repository has been archived by the owner on Apr 24, 2020. It is now read-only.

Commit

Permalink
fix(tournaments): the bracket should now render the top bar correctly…
Browse files Browse the repository at this point in the history
… in firefox.

closes #89
  • Loading branch information
seiyria committed Nov 6, 2015
1 parent d927fbd commit 1784cd5
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/jade/index.jade
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ html(ng-app='openchallenge', ng-controller="rootController")

md-toolbar(layout="row", ng-controller="navController", ng-include="'navbar'")

div(layout="row", flex)
.overflow-auto(layout="row", flex)
md-sidenav.md-sidenav-left.md-whiteframe-z2.navigation(
layout="column",
ng-if="sidebar.hasSidebar",
md-is-locked-open="$mdMedia('gt-sm')",
md-component-id="left",
ui-view="sidebar",
md-swipe-left="dismissSidebar()")
div(layout="column", flex)
.max-width(layout="column", flex)
md-content(layout="column", flex, ui-view="content")

script(src='./js/lib.min.js')
Expand Down
8 changes: 8 additions & 0 deletions src/scss/site.scss
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,14 @@ $match-column-width: 130px;

$player-not-ready: #c76e06;

.max-width {
@include all-widths(100%);
}

.overflow-auto {
overflow: auto;
}

.hidden {
visibility: hidden;
}
Expand Down

0 comments on commit 1784cd5

Please sign in to comment.