release: 1.4.2, tweak UI, fix emoji on mac

This commit is contained in:
wonfen
2023-12-03 14:01:53 +08:00
parent 290a024a9e
commit 20d580ade8
14 changed files with 69 additions and 48 deletions

Binary file not shown.

View File

@@ -1,21 +1,21 @@
.page-enter {
opacity: 0;
transform: scale(0.9);
clip-path: inset(0 100% 0 0); /* 完全隐藏内容 */
}
.page-enter-active {
opacity: 1;
transform: scale(1);
transition: opacity 300ms, transform 300ms;
clip-path: inset(0 0 0 0); /* 逐渐显示整个内容 */
transition: opacity 300ms, clip-path 300ms ease-in-out;
}
.page-exit {
opacity: 1;
transform: scale(0);
clip-path: inset(0 0 0 0); /* 完全显示内容 */
}
.page-exit-active {
opacity: 0;
transform: scale(0.9);
transition: opacity 300ms, transform 300ms;
clip-path: inset(0 100% 0 0); /* 逐渐隐藏内容 */
transition: opacity 300ms, clip-path 300ms ease-in-out;
}

View File

@@ -18,7 +18,7 @@ body {
--scroller-color: #90939980;
--background-color: #ffffff;
--background-color-alpha: rgba(24, 103, 192, 0.1);
--border-radius: 12px;
--border-radius: 8px;
}
::selection {

View File

@@ -57,7 +57,7 @@
.the-menu {
flex: 1 1 80%;
overflow-y: auto;
margin-bottom: 8px;
margin-bottom: 0px;
}
.the-traffic {