question-tem-single-full-preview.blade.php 656 B

1234567891011121314151617181920212223242526
  1. @props([
  2. 'questions' => ['choice' => [], 'fill' => [], 'answer' => []],
  3. ])
  4. <style>
  5. .qtr-single-full-preview {
  6. max-width: 100%;
  7. overflow-x: auto;
  8. }
  9. .qtr-single-full-preview .section-title {
  10. font-size: 13px;
  11. margin-bottom: 0.35rem;
  12. }
  13. .qtr-single-full-preview .question {
  14. margin-bottom: 0.6rem;
  15. }
  16. @include('pdf.partials.paper-body-core-styles')
  17. @include('pdf.partials.paper-exam-shared-image-styles')
  18. </style>
  19. <div class="qtr-single-full-preview math-render">
  20. @include('components.exam.paper-body', [
  21. 'questions' => $questions,
  22. 'grading' => true,
  23. ])
  24. </div>