mirror of
				https://github.com/KevinMidboe/planetposen.git
				synced 2025-10-29 17:50:32 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			30 lines
		
	
	
		
			365 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			365 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
| @import './frontend/styles/variables';
 | |
| 
 | |
| .flex {
 | |
|   display: flex;
 | |
| }
 | |
| 
 | |
| .justify-content-center {
 | |
|   justify-content: center;
 | |
| }
 | |
| 
 | |
| .align-items-center {
 | |
|   align-items: center;
 | |
| }
 | |
| 
 | |
| .flex-direction-column {
 | |
|   display: flex;
 | |
|   flex-direction: column;
 | |
| }
 | |
| 
 | |
| @include desktop {
 | |
|   .mobile-only {
 | |
|     display: none;
 | |
|   }
 | |
| }
 | |
| 
 | |
| @include mobile {
 | |
|   .desktop-only {
 | |
|     display: none;
 | |
|   }
 | |
| } |