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 520B

123456789101112131415161718192021
  1. @props([
  2. 'preview' => false,
  3. ])
  4. <div
  5. @class([
  6. 'doc-template-container flex justify-center',
  7. ])
  8. >
  9. <div class="max-w-full overflow-x-auto shadow-xl ring-1 ring-gray-950/5 dark:ring-white/10">
  10. <div
  11. @class([
  12. 'doc-template-paper bg-[#ffffff] overflow-y-auto',
  13. 'w-[51.25rem] h-[64rem]' => ! $preview,
  14. 'w-[48rem] min-h-[61.75rem] preview' => $preview,
  15. ])
  16. >
  17. {{ $slot }}
  18. </div>
  19. </div>
  20. </div>