Skip to content

Commit

Permalink
Fix for disappearing backgrounds in topology on firefox
Browse files Browse the repository at this point in the history
  • Loading branch information
jeff-phillips-18 committed Sep 29, 2020
1 parent ae38621 commit 7ba3a88
Showing 1 changed file with 14 additions and 0 deletions.
@@ -1,7 +1,21 @@
@mixin firefox-only {
@at-root {
@-moz-document url-prefix() {
& {
@content;
}
}
}
}
.odc-topology-graph-view {
position: absolute;
top: 0;
bottom: 0;
right: 0;
left: 0;
@include firefox-only {
position: relative;
width: 100%;
height: 100%;
}
}

0 comments on commit 7ba3a88

Please sign in to comment.