feat(app): tabbed sticky details panel

This commit is contained in:
rektdeckard
2023-02-03 10:31:15 -07:00
parent 1b8d6c48fc
commit 5e7f85ffdc
12 changed files with 398 additions and 18 deletions

View File

@@ -95,6 +95,17 @@ button.main-button svg {
/* gap: 24px; */
}
figure {
margin: 0;
display: grid;
place-items: center;
}
figcaption {
font-size: 14px;
text-align: center;
}
a.main-link {
text-decoration: none;
position: relative;
@@ -128,3 +139,18 @@ a.main-link:hover:after {
font-size: 24px;
line-height: 0.5em;
}
.card {
border-radius: 8px;
border: 2px solid rgba(163, 159, 171, 0.1);
}
.card.dark {
color: white;
background-color: #413c48;
}
.card.light {
color: rgb(53, 49, 61);
background-color: #f6f5f6;
}