Passolution

This commit is contained in:
Kevin Adametz 2020-10-16 16:18:34 +02:00
parent f79806ffe8
commit 06fc3ba919
31 changed files with 337 additions and 119 deletions

View file

@ -0,0 +1,39 @@
@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