mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
89be30ff0e
- Added base of new grid system. - Added new margin/padding/visiblity helpers. - Made header collapse to overflow menu on mobile.
22 lines
338 B
PHP
22 lines
338 B
PHP
@extends('base')
|
|
|
|
@section('body-class', 'shaded')
|
|
|
|
@section('content')
|
|
|
|
<div class="toolbar-container">
|
|
@yield('toolbar')
|
|
</div>
|
|
|
|
|
|
<div class="flex-fill flex">
|
|
<div class="content flex">
|
|
<div class="scroll-body">
|
|
@yield('body')
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
@stop
|