Template

Templates Nav/styles.css

From Dogcraft Wiki

mNo edit summary
mNo edit summary
 
Line 12: Line 12:
top: 110px;  
top: 110px;  
padding-top: .5rem;
padding-top: .5rem;
}
body.action-view .templates-nav {
margin-top: -5rem;
}
}



Latest revision as of 19:43, 3 February 2026

.template-page {
	display: grid; 
	grid-template-columns: 260px 1fr; 
	align-items: start; 
	column-gap: .5rem;
}

.templates-nav {
	max-height: calc(100vh - 120px); 
	overflow-y: auto; 
	position: sticky; 
	top: 110px; 
	padding-top: .5rem;
}

@media only screen and (max-width: 999px) {
	.templates-nav {
		display: none;
	}
	
	.template-page-content {
		grid-column: 1 / -1;
	}
}