Template

Templates Nav/styles.css

From Dogcraft Wiki

< Template:Templates Nav
Revision as of 17:48, 30 January 2026 by Domino (talk | contribs) (Created page with ".template-documentation { display: grid; grid-template-columns: 260px 1fr; align-items: start; column-gap: 4px; } .templates-nav { max-height: calc(100vh - 120px); overflow-y: auto; position: sticky; top: 80px; padding-top: calc(30px + .5rem); } @media only screen and (max-width: 999px) { .templates-nav { display: none; } .template-documentation-content { grid-column: 1 / -1; } }")
(diff) โ† Older revision | Latest revision (diff) | Newer revision โ†’ (diff)
.template-documentation {
	display: grid; 
	grid-template-columns: 260px 1fr; 
	align-items: start; 
	column-gap: 4px;
}

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

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