Template:Flexbox/styles.css

From Pizza Tower Wiki
Revision as of 15:17, 3 April 2024 by SuperKirbylover (talk | contribs) (recategorization)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
.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]] */