34 lines
		
	
	
		
			417 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			417 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;
 | |
| }
 | |
| h1{
 | |
|     font-size: 21pt;
 | |
|     font-weight: bold;
 | |
| }
 | |
| h2{
 | |
|     font-size: 19pt;
 | |
|     font-weight: bold;
 | |
| } |