Skip to content
Snippets Groups Projects
Commit d9f226ee authored by Kyle Doherty's avatar Kyle Doherty
Browse files

refactor app mount point to remove flex context by default

parent 74575ecc
Branches
Tags
No related merge requests found
......@@ -12,6 +12,7 @@
}
.Main {
height: 100%;
z-index: 1;
position: relative;
}
......
......@@ -8,6 +8,7 @@
#react_qb_viz {
z-index: 1;
flex-grow: 1;
}
/* @layout */
......
<div class="QueryBuilder flex flex-column flex-full bg-white" ng-class="{ 'QueryBuilder--showDataReference': isShowingDataReference }">
<div class="QueryBuilder flex flex-column bg-white absolute top left bottom right" ng-class="{ 'QueryBuilder--showDataReference': isShowingDataReference }">
<div id="react_qb_header"></div>
<div id="react_qb_editor"></div>
<div id="react_qb_viz" class="flex flex-full"></div>
<div id="react_qb_viz" class="flex"></div>
</div>
<div class="DataReference flex flex-full" id="react_data_reference"></div>
<div class="DataReference" id="react_data_reference"></div>
<div id="react_qb_tutorial"></div>
<div id="react_qbnewb_modal"></div>
\ No newline at end of file
<div id="react_qbnewb_modal"></div>
......@@ -15,8 +15,7 @@
<body ng-controller="Metabase">
<div class="Nav" ng-controller="Nav" mb-react-component="Navbar"></div>
<main class="Main flex flex-column flex-full" ng-view></main>
<main class="Main" ng-view></main>
</body>
<script type="text/javascript">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment