feat(app): various updates for v2.0.0

This commit is contained in:
rektdeckard
2023-03-08 01:05:49 -07:00
parent d379cea5bc
commit 85af26fd1c
17 changed files with 98 additions and 71 deletions

View File

@@ -78,7 +78,7 @@
.snippet pre {
display: flex;
align-items: center;
align-items: flex-start;
text-overflow: ellipsis;
-moz-user-select: all;
-webkit-user-select: all;
@@ -142,7 +142,7 @@
.close-button {
color: inherit;
background: var(--background);
background: transparent;
height: unset !important;
padding: 0 !important;
margin: 0 !important;
@@ -154,6 +154,18 @@
cursor: pointer;
}
.close-button::before {
content: "";
background: var(--background);
position: absolute;
width: 18px;
height: 18px;
top: 5px;
left: 5px;
border-radius: 50%;
z-index: -1;
}
.close-button:active {
opacity: 0.7;
}
@@ -238,6 +250,10 @@ figcaption > p {
bottom: -4px;
display: flex;
flex-direction: column;
height: 60vh;
height: 440px;
}
}
.action-button svg {
margin-right: 6px;
}