aaronjy-me/src/components/Book/Book.module.css
Aaron Yarborough 205522acc9 Add library feature (#1)
Co-authored-by: Aaron Yarborough <3855819+AaronJY@users.noreply.github.com>
Reviewed-on: #1
2025-03-29 11:44:02 +00:00

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%;
}
}