mirror of
				https://github.com/crater-invoice/crater.git
				synced 2025-10-30 21:21:09 -04:00 
			
		
		
		
	* add dark mode in DashboardStatsItem * add dark mode in customer side header * add dark mode in customer view file * fix placeholder * fix base select input --------- Co-authored-by: yogesh-gohil <yogeshgohil1611@gmail.com>
		
			
				
	
	
		
			33 lines
		
	
	
		
			648 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			648 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <template>
 | |
|   <BaseContentPlaceholders
 | |
|     :rounded="true"
 | |
|     class="
 | |
|       relative
 | |
|       flex
 | |
|       justify-between
 | |
|       w-full
 | |
|       p-3
 | |
|       bg-white
 | |
|       rounded
 | |
|       shadow
 | |
|       lg:col-span-2
 | |
|       xl:p-4
 | |
|       dark:bg-gray-800
 | |
|     "
 | |
|   >
 | |
|     <div>
 | |
|       <BaseContentPlaceholdersText
 | |
|         class="w-12 h-5 -mb-1 xl:mb-6 xl:h-7"
 | |
|         :lines="1"
 | |
|       />
 | |
|       <BaseContentPlaceholdersText class="w-20 h-3 xl:h-4" :lines="1" />
 | |
|     </div>
 | |
|     <div class="flex items-center">
 | |
|       <BaseContentPlaceholdersBox
 | |
|         :circle="true"
 | |
|         class="w-10 h-10 xl:w-12 xl:h-12"
 | |
|       />
 | |
|     </div>
 | |
|   </BaseContentPlaceholders>
 | |
| </template>
 |