mirror of
				https://github.com/DerTyp7/explainegy-nextjs.git
				synced 2025-11-03 23:09:16 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			32 lines
		
	
	
		
			620 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			620 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
@import "../variables.scss";
 | 
						|
 | 
						|
.sidebar {
 | 
						|
	.stickyContainer {
 | 
						|
		position: sticky;
 | 
						|
		top: $tutorial-grid-sticky-top;
 | 
						|
		display: flex;
 | 
						|
		flex-direction: column;
 | 
						|
		row-gap: 20px;
 | 
						|
		font-size: 14px;
 | 
						|
		@media (max-width: $tutorial-breakpoint-1) {
 | 
						|
			display: none;
 | 
						|
		}
 | 
						|
		.sidebarContainer {
 | 
						|
			display: flex;
 | 
						|
			flex-direction: column;
 | 
						|
			row-gap: 5px;
 | 
						|
			background-color: var(--color-background-card);
 | 
						|
			border-radius: 10px;
 | 
						|
			padding: 10px 10px 15px 10px;
 | 
						|
		}
 | 
						|
		.adContainer {
 | 
						|
			background-color: #ff00003e;
 | 
						|
			display: flex;
 | 
						|
			justify-content: center;
 | 
						|
			align-items: center;
 | 
						|
			width: 100%;
 | 
						|
			height: 100%;
 | 
						|
		}
 | 
						|
	}
 | 
						|
}
 |