mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-30 21:02:55 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <div class="fixed z-10 inset-0 overflow-y-auto" style="display:none;" x-show="{{ $show_property }}">
 | |
|     <div class="flex items-end justify-center min-h-screen pt-4 px-4 pb-20 text-center sm:block sm:p-0">
 | |
|         <div class="fixed inset-0 transition-opacity">
 | |
|             <div class="absolute inset-0 bg-gray-500 opacity-75"></div>
 | |
|         </div>
 | |
| 
 | |
|         <span class="hidden sm:inline-block sm:align-middle sm:h-screen"></span>​
 | |
| 
 | |
|         <div class="inline-block align-bottom bg-white rounded-lg px-4 pt-5 pb-4 text-left overflow-hidden shadow-xl transform transition-all sm:my-8 sm:align-middle sm:max-w-sm sm:w-full sm:p-6" role="dialog" aria-modal="true" aria-labelledby="modal-headline">
 | |
|             <div class="flex items-center justify-between">
 | |
|                 <h3 class="text-lg leading-6 font-medium text-gray-900" id="modal-headline">
 | |
|                     {{ $title }}
 | |
|                 </h3>
 | |
|                 <button @click="{{ $show_property }} = false" class="focus:outline-none" aria-label="Close pop-up">
 | |
|                     <svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-x">
 | |
|                         <line x1="18" y1="6" x2="6" y2="18"></line>
 | |
|                         <line x1="6" y1="6" x2="18" y2="18"></line>
 | |
|                     </svg>
 | |
|                 </button>
 | |
|             </div>
 | |
|             <div class="mt-4 text-sm leading-5 text-gray-500">
 | |
|                 {!! $slot !!}
 | |
|             </div>
 | |
|         </div>
 | |
|     </div>
 | |
| </div>
 |