mirror of
				https://github.com/imezx/Warp.git
				synced 2025-10-31 10:19:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
	
		
			491 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
	
		
			491 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <script lang="ts" setup>
 | |
| import { useData } from '../composables/data'
 | |
| import VPSwitchAppearance from './VPSwitchAppearance.vue'
 | |
| 
 | |
| const { site } = useData()
 | |
| </script>
 | |
| 
 | |
| <template>
 | |
|   <div v-if="site.appearance && site.appearance !== 'force-dark'" class="VPNavBarAppearance">
 | |
|     <VPSwitchAppearance />
 | |
|   </div>
 | |
| </template>
 | |
| 
 | |
| <style scoped>
 | |
| .VPNavBarAppearance {
 | |
|   display: none;
 | |
| }
 | |
| 
 | |
| @media (min-width: 1280px) {
 | |
|   .VPNavBarAppearance {
 | |
|     display: flex;
 | |
|     align-items: center;
 | |
|   }
 | |
| }
 | |
| </style>
 |