no message

This commit is contained in:
A1300399510 2024-11-19 18:21:52 +08:00
parent e5354c7b51
commit 33b07ddc25
4 changed files with 25 additions and 4 deletions

View File

@ -370,6 +370,15 @@ body {
height: 640px;
background-color: #f6f6f6;
border-radius: 0 0 12px 0;
animation: contrastRightShow 0.3s;
}
@keyframes contrastRightShow {
0% {
width: 0;
}
100% {
width: 420;
}
}
.my-project .my-box .contrast-box .right .hint {
font-size: 14px;

View File

@ -422,6 +422,16 @@ body {
height: 640px;
background-color: rgba(246, 246, 246, 1);
border-radius: 0 0 12px 0;
animation: contrastRightShow 0.3s;
@keyframes contrastRightShow {
0% {
width: 0;
}
100% {
width: 420;
}
}
.hint {
font-size: 14px;

View File

@ -149,13 +149,14 @@
justify-content: space-between;
padding: 6px;
transition: all 0.3s;
position: relative;
}
.boxbox .details .right .brief .brief-dom {
color: transparent;
pointer-events: none;
position: fixed;
position: absolute;
top: -100000%;
width: 898px;
width: 100%;
word-break: keep-all;
}
.boxbox .details .right .brief.brief-show {

View File

@ -164,13 +164,14 @@
justify-content: space-between;
padding: 6px;
transition: all 0.3s;
position: relative;
.brief-dom {
color: transparent;
pointer-events: none;
position: fixed;
position: absolute;
top: -100000%;
width: 898px;
width: 100%;
word-break: keep-all;
}