Template:NotableWrap/styles.css

From Tears of Themis Wiki
/** [[Template:NotableWrap]] **/
.notable-wrap {
	box-sizing: border-box;
}
.notable-wrap {
	display: flex;
	flex-wrap: wrap;
}
/*desktop*/
@media screen and (min-width: 1000px) {
	.notable-wrap > .notable {
		width: 400px;
	}
}
/*mobile*/
@media screen and (max-width: 999px) {
	.notable-wrap > .notable {
		width: 100%;
	}
}