mirror of
				https://github.com/BookStackApp/BookStack.git
				synced 2025-11-03 02:13:16 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			309 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			309 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
// Responsive breakpoint control
 | 
						|
@mixin smaller-than($size) {
 | 
						|
    @media screen and (max-width: $size) { @content; }
 | 
						|
}
 | 
						|
@mixin larger-than($size) {
 | 
						|
    @media screen and (min-width: $size) { @content; }
 | 
						|
}
 | 
						|
@mixin between($min, $max) {
 | 
						|
  @media screen and (min-width: $min) and (max-width: $max) { @content; }
 | 
						|
}
 |