mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
8b27ce3296
Listing content previews no longer pre-wrap and instead simply break correctly. Updated titles to ensure they break on mobile devices. Reduced spacing and font sizes on mobile to better adjust content to screen size. Fixes #739
12 lines
297 B
PHP
12 lines
297 B
PHP
<div ng-non-bindable>
|
|
|
|
<h1 class="break-text" v-pre id="bkmrk-page-title">{{$page->name}}</h1>
|
|
|
|
<div style="clear:left;"></div>
|
|
|
|
@if (isset($diff) && $diff)
|
|
{!! $diff !!}
|
|
@else
|
|
{!! isset($page->renderedHTML) ? $page->renderedHTML : $page->html !!}
|
|
@endif
|
|
</div> |