Test basic building env

This commit is contained in:
chrox
2024-09-26 19:02:06 +02:00
parent 7a2e5d6e52
commit aa07a4de3b
12 changed files with 6642 additions and 197 deletions
@@ -0,0 +1,48 @@
.libraryContainer {
padding: 16px;
}
.viewToggle {
display: flex;
justify-content: flex-end;
margin-bottom: 16px;
}
.viewToggle button {
background: none;
border: none;
padding: 8px;
cursor: pointer;
color: #333;
}
.viewToggle button.active {
color: blue;
}
.grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 16px;
}
.list {
display: block;
}
.bookCard {
text-align: center;
border: 1px solid #eaeaea;
padding: 16px;
border-radius: 8px;
}
.bookCard img {
width: 100%;
height: auto;
border-radius: 8px;
}
.bookCard h3 {
margin-top: 12px;
}