27 lines
		
	
	
		
			318 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			318 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
| html, body{
 | |
|     padding: 0px;
 | |
|     margin: 0px;
 | |
|     width: 100%;
 | |
|     height:100%;
 | |
|     min-height: 100%;
 | |
|     min-width: 100%;
 | |
| }
 | |
| 
 | |
| #__next{
 | |
|     min-height: 100%;
 | |
| }
 | |
| 
 | |
| html{
 | |
|     background-color: red;
 | |
| }
 | |
| 
 | |
| .pp{
 | |
|     color: white;
 | |
| }
 | |
| .root{
 | |
|     display:flex;
 | |
|     flex-direction: column;
 | |
|     min-height: 100vh;
 | |
|     height:100vh;
 | |
| }
 |