mirror of
				https://github.com/DerTyp7/explainegy-nextjs.git
				synced 2025-10-30 21:27:12 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			29 lines
		
	
	
		
			374 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			374 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
| @import "variables_colors.scss";
 | |
| @import "variables.scss";
 | |
| @import "typography.scss";
 | |
| 
 | |
| * {
 | |
| 	box-sizing: border-box;
 | |
| 	padding: 0;
 | |
| 	margin: 0;
 | |
| }
 | |
| 
 | |
| *,
 | |
| :after,
 | |
| :before {
 | |
| 	box-sizing: border-box;
 | |
| }
 | |
| 
 | |
| html,
 | |
| body {
 | |
| 	max-width: 100vw;
 | |
| 	background-color: var(--color-background-body);
 | |
| 	min-height: 100vh;
 | |
| 	display: flex;
 | |
| 	flex-direction: column;
 | |
| 	main {
 | |
| 		width: 100%;
 | |
| 		flex: 1;
 | |
| 	}
 | |
| }
 | 
