You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

container.blade.php 528B

123456789101112131415161718
  1. @props([
  2. 'preview' => false,
  3. ])
  4. <div class="doc-template-container flex justify-center p-6">
  5. <div
  6. @class([
  7. 'doc-template-paper bg-[#ffffff] shadow-xl border border-gray-200',
  8. 'w-full max-w-[820px] min-h-[1066px] max-h-[1200px] overflow-y-auto' => $preview === false,
  9. 'w-[38.25rem] h-[49.5rem] overflow-hidden' => $preview === true,
  10. ])
  11. @style([
  12. 'scrollbar-width: thin;' => $preview === false,
  13. ])
  14. >
  15. {{ $slot }}
  16. </div>
  17. </div>