31 lines
		
	
	
		
			397 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			397 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
html,
 | 
						|
body,
 | 
						|
#__next {
 | 
						|
  padding: 0;
 | 
						|
  margin: 0;
 | 
						|
  min-height: 100vh;
 | 
						|
  display: flex;
 | 
						|
  flex-direction: column;
 | 
						|
}
 | 
						|
 | 
						|
* {
 | 
						|
  box-sizing: border-box;
 | 
						|
}
 | 
						|
 | 
						|
.gutter {
 | 
						|
  position: relative;
 | 
						|
  background: transparent;
 | 
						|
}
 | 
						|
.gutter-vertical {
 | 
						|
  margin-top: -10px;
 | 
						|
}
 | 
						|
.gutter-horizontal {
 | 
						|
  margin-left: -10px;
 | 
						|
}
 | 
						|
.gutter-vertical:hover {
 | 
						|
  cursor: row-resize;
 | 
						|
}
 | 
						|
.gutter-horizontal:hover {
 | 
						|
  cursor: col-resize;
 | 
						|
}
 |