mein-sterntours/resources/views/pdf/passolution.blade.php
2020-10-16 16:18:34 +02:00

39 lines
No EOL
806 B
PHP

@extends('pdf.layout-small')
@section('content')
<style>
h1 {
font-size: 1rem;
}
h2 {
font-size: 1.1rem;
}
ul, ol {
padding-left: 2rem;
}
li {
padding-bottom: 0.5rem;
}
.pdf-input-content {
font-size: 11pt;
line-height: 1.3em;
margin-bottom: 2rem;
}
.pdf-break-block {
/* page-break-inside: avoid; */
}
</style>
<h1>Einreise-, Visabestimmungen und gesundheitspolizeilichen Vorschriften</h1>
<hr>
@if($contents)
<div class="pdf-break-block">
<div class="pdf-input-content">
{!! nl2br($contents) !!}
</div>
</div>
@endif
@endsection