Co-authored-by: Aaron Yarborough <3855819+AaronJY@users.noreply.github.com> Reviewed-on: #1
34 lines
No EOL
401 B
CSS
34 lines
No EOL
401 B
CSS
|
|
.layout {
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: 1.25rem;
|
|
margin: 1.25rem 0;
|
|
}
|
|
|
|
.layout:first-child {
|
|
flex-grow: 0;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.layout:last-child {
|
|
flex-grow: 1;
|
|
}
|
|
|
|
.layout p:first-child {
|
|
margin-top: 0;
|
|
}
|
|
|
|
.thumbnail {
|
|
border-radius: 8px;
|
|
}
|
|
|
|
@media screen and (max-width: 650px) {
|
|
.layout {
|
|
flex-direction: column-reverse;
|
|
}
|
|
|
|
.thumbnail {
|
|
width: 100%;
|
|
}
|
|
} |