mirror of
https://git.coop/cotech/website.git
synced 2025-06-26 16:40:52 +00:00
Make .two-column a single column on mobile
This commit is contained in:
@ -312,11 +312,19 @@ section.content h2 {
|
|||||||
.two-column {
|
.two-column {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
display: flex;
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
gap: var(--space-xl);
|
gap: var(--space-xl);
|
||||||
padding: var(--space-lg)
|
padding: var(--space-lg)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media screen and (width >= 480px) {
|
||||||
|
.two-column {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.two-column p {
|
.two-column p {
|
||||||
max-width: 70ch;
|
max-width: 70ch;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user