Template:Flexbox/styles.css: Difference between revisions

From Pizza Tower Wiki
Content added Content deleted
mNo edit summary
m (recategorization)
 
Line 21: Line 21:
width: initial;
width: initial;
}
}
/* [[Category:Styling pages]] */
/* [[Category:Template styles]] */

Latest revision as of 15:17, 3 April 2024

.flexingBox {
	display: flex;
	gap: 10px 5px; /* default */
	flex-flow: row wrap;
	justify-content: /*center*/ flex-start;
	width: fit-content;
}
.flexingBox.flexColumn {
	flex-flow: column !important;
}
.flexingBox>div {
	flex-grow: 1;
	flex-shrink: 1;
}
.flexingBox#enemy {
	gap: 10px;
}
.flexingBox#subpage {
	gap: 0 5px;
	/*justify-content: flex-start;*/
	width: initial;
}
/* [[Category:Template styles]] */