mirror of
				https://github.com/em-squared/5e-drs.git
				synced 2025-10-31 13:34:21 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			54 lines
		
	
	
	
		
			956 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
			
		
		
	
	
			54 lines
		
	
	
	
		
			956 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
| main.content {
 | |
|   padding: 0 3rem;
 | |
| 
 | |
|   @media screen and (max-width: $breakpointMD) {
 | |
|     padding: 0;
 | |
|   }
 | |
| }
 | |
| 
 | |
| @media screen and (min-width: $breakpointMD) {
 | |
|   .column-count-2 {
 | |
|     column-count: 2;
 | |
|     column-gap: 25pt;
 | |
|   }
 | |
|   .column-count-3 {
 | |
|     column-count: 3;
 | |
|     margin-bottom: 12px;
 | |
|   }
 | |
|   .column-count-4 {
 | |
|     column-count: 4;
 | |
|     margin-bottom: 12px;
 | |
|   }
 | |
| }
 | |
| 
 | |
| * {
 | |
|   ::-webkit-scrollbar {
 | |
|     height: 12px;
 | |
|     width: 7px;
 | |
|     background: darken($color-background, 50);
 | |
|   }
 | |
|   scrollbar-color: $color-gold darken($color-background, 50);
 | |
|   scrollbar-width: thin;
 | |
| 
 | |
|   ::-webkit-scrollbar-thumb {
 | |
|     background: $color-gold;
 | |
|     border: 1px solid $color-gold-light;
 | |
| 
 | |
|     &:hover {
 | |
|       background: $color-gold-light;
 | |
|     }
 | |
|   }
 | |
| 
 | |
|   ::-webkit-scrollbar-corner {
 | |
|     background: #000;
 | |
|   }
 | |
| }
 | |
| 
 | |
| .theme--light {
 | |
|   .v-main {
 | |
|     background-color: lighten($color-background, 5);
 | |
|   }
 | |
|   .v-navigation-drawer {
 | |
|     background-color: darken($color-background, 0);
 | |
|   }
 | |
| }
 | 
