Template:Columns/styles.css: Difference between revisions

From Ymirheim Wiki
(Created page with ".columns-row { display: flex; flex-direction: row; flex-flow: row wrap; justify-content: space-between; } .columns-col { flex: 1; min-width: 250px; padding-right: 15px; padding-left: 15px; } .columns-col-2 { flex: 2; }")
 
No edit summary
 
(2 intermediate revisions by the same user not shown)
Line 15: Line 15:
.columns-col-2 {
.columns-col-2 {
flex: 2;
flex: 2;
}
.columns-col-3 {
flex: 3;
}
}

Latest revision as of 10:24, 10 July 2024

.columns-row {
	display: flex;
	flex-direction: row;
	flex-flow: row wrap;
	justify-content: space-between;
}

.columns-col {
	flex: 1;
	min-width: 250px;
	padding-right: 15px;
	padding-left: 15px;
}

.columns-col-2 {
	flex: 2;
}

.columns-col-3 {
	flex: 3;
}