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; height: 640px;
background-color: #f6f6f6; background-color: #f6f6f6;
border-radius: 0 0 12px 0; 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 { .my-project .my-box .contrast-box .right .hint {
font-size: 14px; font-size: 14px;

View File

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

View File

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

View File

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