| 1234567891011121314151617181920212223242526 |
- @props([
- 'questions' => ['choice' => [], 'fill' => [], 'answer' => []],
- ])
- <style>
- .qtr-single-full-preview {
- max-width: 100%;
- overflow-x: auto;
- }
- .qtr-single-full-preview .section-title {
- font-size: 13px;
- margin-bottom: 0.35rem;
- }
- .qtr-single-full-preview .question {
- margin-bottom: 0.6rem;
- }
- @include('pdf.partials.paper-body-core-styles')
- @include('pdf.partials.paper-exam-shared-image-styles')
- </style>
- <div class="qtr-single-full-preview math-render">
- @include('components.exam.paper-body', [
- 'questions' => $questions,
- 'grading' => true,
- ])
- </div>
|