More languages
More actions
No edit summary |
No edit summary |
||
Line 6: | Line 6: | ||
align-content:flex-start; | align-content:flex-start; | ||
gap:20px; | gap:20px; | ||
} | |||
h2{ /*Remove the extra styling on top-level headings that ideally are only used at the very top of a container*/ | |||
border-bottom:none; | |||
margin-top:0; | |||
} | } | ||
Revision as of 07:55, 4 November 2023
.portal{
display:flex;
flex-flow:row wrap;
justify-content:space-between;
align-items:stretch;
align-content:flex-start;
gap:20px;
}
h2{ /*Remove the extra styling on top-level headings that ideally are only used at the very top of a container*/
border-bottom:none;
margin-top:0;
}
@media only screen and (max-width:768px){
.portal{
gap:10px;
}
}