feat(app): new details footer appearance

This commit is contained in:
rektdeckard
2023-02-05 23:09:20 -07:00
parent 3756374140
commit eba876b3ea
19 changed files with 220 additions and 95 deletions

View File

@@ -119,14 +119,15 @@
}
.snippet {
margin-bottom: 24px;
/* margin-bottom: 24px; */
width: 100%;
}
.snippet pre {
display: flex;
align-items: center;
text-overflow: ellipsis;
color: black;
/* color: black; */
-moz-user-select: all;
-webkit-user-select: all;
user-select: all;
@@ -218,16 +219,40 @@ aside.detail-footer {
margin: auto;
max-width: 1120px;
display: grid;
grid-template-columns: 144px 1fr 160px;
grid-template-columns: 232px 1fr;
gap: 24px;
padding: 12px 24px;
height: 136px;
}
figure {
margin: 0;
display: grid;
grid-template-columns: 64px 1fr;
gap: 24px;
align-items: center;
}
figcaption {
display: flex;
flex-direction: column;
font-size: 14px;
}
figcaption > p {
margin: 0;
}
.detail-preview {
display: flex;
flex-direction: column;
align-items: center;
padding: 16px;
justify-content: center;
gap: 24px;
}
.detail-actions {
padding: 16px;
display: flex;
flex-direction: row;
align-items: center;
gap: 8px;
}