In an Angular project, I'm using a v-Accordion and inside one of its panes, there's a ng-gallery component. Everytime a thumbnail is clicked, the ng-gallery overlay is opened inside the v-Accordion pane. How can I make it fullscreen (covering the body)?
Here is a Plunker demonstrating this issue:
<h2>Outside Accordion</h2>
<ng-gallery images="images"></ng-gallery>
<br />
<h2>Inside Accordion</h2>
<v-accordion class="vAccordion--default" multiple>
<v-pane expanded>
<v-pane-header>
Accordion
</v-pane-header>
<v-pane-content style="background-color:#dedede;">
<pre>
Content bla bla bla
More Content
</pre>
<ng-gallery images="images"></ng-gallery>
</v-pane-content>
</v-pane>
</v-accordion>