26 lines
372 B
CSS
26 lines
372 B
CSS
.book-card header {
|
|
white-space: nowrap;
|
|
overflow: scroll;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.book-card hgroup {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.cover {
|
|
width: 100%;
|
|
object-fit: contain;
|
|
height: 25rem;
|
|
}
|
|
|
|
.grid-container {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
|
|
gap: 10px;
|
|
}
|
|
|
|
.grid-item {
|
|
text-align: center;
|
|
}
|