Template:Portal CSS/style.css: Difference between revisions

Template page
No edit summary
No edit summary
Line 5: Line 5:
align-items:flex-start;
align-items:flex-start;
align-content:flex-start;
align-content:flex-start;
gap:10px;
gap:20px;
}
 
@media only screen and (max-width:768px){
.portal{
gap:10px;
}
}
}

Revision as of 16:19, 3 November 2023

.portal{
	display:flex;
	flex-flow:row wrap;
	justify-content:space-between;
	align-items:flex-start;
	align-content:flex-start;
	gap:20px;
}

@media only screen and (max-width:768px){
	.portal{
		gap:10px;
	}
}