mirror of
				https://github.com/mastermindzh/rickvanlieshout.com
				synced 2025-10-31 16:49:49 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			52 lines
		
	
	
		
			852 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
			
		
		
	
	
			52 lines
		
	
	
		
			852 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
| @use "sass:color";
 | |
| 
 | |
| @use "../../assets/scss/variables" as *;
 | |
| @use "../../assets/scss/mixins" as *;
 | |
| 
 | |
| .pagination {
 | |
|   display: flex;
 | |
|   @include margin-top(2);
 | |
| 
 | |
|   .previous {
 | |
|     text-align: left;
 | |
|     width: 50%;
 | |
| 
 | |
|     .previousLink {
 | |
|       color: $color-secondary;
 | |
|       font-size: 26px;
 | |
|       font-weight: bold;
 | |
| 
 | |
|       &:hover,
 | |
|       &:focus {
 | |
|         color: $color-primary;
 | |
|       }
 | |
| 
 | |
|       &.disable {
 | |
|         color: color.adjust($color-gray, $whiteness: 20%);
 | |
|         pointer-events: none;
 | |
|       }
 | |
|     }
 | |
|   }
 | |
| 
 | |
|   .next {
 | |
|     text-align: right;
 | |
|     width: 50%;
 | |
| 
 | |
|     .nextLink {
 | |
|       color: $color-secondary;
 | |
|       font-size: 26px;
 | |
|       font-weight: bold;
 | |
| 
 | |
|       &:hover,
 | |
|       &:focus {
 | |
|         color: $color-primary;
 | |
|       }
 | |
| 
 | |
|       &.disable {
 | |
|         color: color.adjust($color-gray, $whiteness: 20%);
 | |
|         pointer-events: none;
 | |
|       }
 | |
|     }
 | |
|   }
 | |
| }
 |