mirror of
				https://github.com/JKorf/CryptoExchange.Net
				synced 2025-11-04 04:17:32 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			462 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			462 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
// Pagination
 | 
						|
 | 
						|
@mixin pagination-size($padding-y, $padding-x, $font-size, $line-height, $border-radius) {
 | 
						|
  .page-link {
 | 
						|
    padding: $padding-y $padding-x;
 | 
						|
    @include font-size($font-size);
 | 
						|
    line-height: $line-height;
 | 
						|
  }
 | 
						|
 | 
						|
  .page-item {
 | 
						|
    &:first-child {
 | 
						|
      .page-link {
 | 
						|
        @include border-left-radius($border-radius);
 | 
						|
      }
 | 
						|
    }
 | 
						|
    &:last-child {
 | 
						|
      .page-link {
 | 
						|
        @include border-right-radius($border-radius);
 | 
						|
      }
 | 
						|
    }
 | 
						|
  }
 | 
						|
}
 |