Fix ff layout

This commit is contained in:
Dennis Eichhorn 2017-09-26 20:49:21 +02:00
parent 2d32981320
commit 4640299917
2 changed files with 90 additions and 77 deletions

View File

@ -13,7 +13,9 @@
*/ */
echo $this->getData('nav')->render(); ?> echo $this->getData('nav')->render(); ?>
<section class="box w-50 floatLeft"> <div class="row">
<div class="col-xs-12 col-md-6">
<section class="box wf-100">
<header><h1><?= $this->getHtml('Survey'); ?></h1></header> <header><h1><?= $this->getHtml('Survey'); ?></h1></header>
<div class="inner"> <div class="inner">
<form> <form>
@ -35,8 +37,10 @@ echo $this->getData('nav')->render(); ?>
</form> </form>
</div> </div>
</section> </section>
</div>
<section class="box w-50 floatLeft"> <div class="col-xs-12 col-md-6">
<section class="box wf-100">
<header><h1><?= $this->getHtml('Section'); ?></h1></header> <header><h1><?= $this->getHtml('Section'); ?></h1></header>
<div class="inner"> <div class="inner">
<form> <form>
@ -54,9 +58,12 @@ echo $this->getData('nav')->render(); ?>
</form> </form>
</div> </div>
</section> </section>
</div>
</div>
<div class="row">
<section class="box w-50 floatLeft"> <div class="col-xs-12 col-md-6">
<section class="box wf-100">
<header><h1><?= $this->getHtml('Question'); ?></h1></header> <header><h1><?= $this->getHtml('Question'); ?></h1></header>
<div class="inner"> <div class="inner">
<form> <form>
@ -74,3 +81,5 @@ echo $this->getData('nav')->render(); ?>
</form> </form>
</div> </div>
</section> </section>
</div>
</div>

View File

@ -19,7 +19,9 @@ $footerView->setPage(1);
echo $this->getData('nav')->render(); ?> echo $this->getData('nav')->render(); ?>
<div class="box w-100"> <div class="row">
<div class="col-xs-12">
<div class="box wf-100">
<table class="table red"> <table class="table red">
<caption><?= $this->getHtml('Surveys'); ?></caption> <caption><?= $this->getHtml('Surveys'); ?></caption>
<thead> <thead>
@ -39,3 +41,5 @@ echo $this->getData('nav')->render(); ?>
<?php endif; ?> <?php endif; ?>
</table> </table>
</div> </div>
</div>
</div>