mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-10-30 17:53:31 -04:00 
			
		
		
		
	feature/mobile-layout (#431)
* lazy load cards * shopping list recipe search bug * admin layout fluid * site loader * username support * mobile tabs * set username at signup * update user tests * patch bug on shopping list * public mealplan links * support link (I'm a monster) * icon only on mobile * padding Co-authored-by: hay-kot <hay-kot@pm.me>
This commit is contained in:
		
							
								
								
									
										25
									
								
								frontend/src/components/UI/SiteLoader.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										25
									
								
								frontend/src/components/UI/SiteLoader.vue
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,25 @@ | ||||
| <template> | ||||
|   <v-progress-circular class="mx-auto" :width="size / 20" :size="size" color="primary lighten-2" indeterminate> | ||||
|     <div class="text-center"> | ||||
|       <v-icon :size="size / 2" color="primary lighten-2"> | ||||
|         {{ $globals.icons.primary }} | ||||
|       </v-icon> | ||||
|       <div> | ||||
|         Loading Recipes | ||||
|       </div> | ||||
|     </div> | ||||
|   </v-progress-circular> | ||||
| </template> | ||||
|  | ||||
| <script> | ||||
| export default { | ||||
|   props: { | ||||
|     loading: { | ||||
|       default: true, | ||||
|     }, | ||||
|     size: { | ||||
|       default: 200, | ||||
|     }, | ||||
|   }, | ||||
| }; | ||||
| </script> | ||||
		Reference in New Issue
	
	Block a user