This commit is contained in:
iqudoo
2026-06-13 03:41:20 +08:00
parent 979a565468
commit 3b9724beb3
7 changed files with 634 additions and 129 deletions

View File

@@ -1317,6 +1317,11 @@ body {
min-height: 0;
}
.mobile-design-canvas-wrap:has([data-interaction-active]),
.mobile-design-canvas-shell-interaction {
overflow: visible;
}
.mobile-design-props-wrap {
flex: 1 1 48%;
min-height: 220px;
@@ -1416,6 +1421,85 @@ body {
min-height: 40px !important;
flex-shrink: 0;
}
.mobile-nudge-panel {
display: flex;
flex-direction: column;
align-items: stretch;
min-height: 100%;
padding-bottom: 12px;
}
.mobile-nudge-header {
width: 100%;
text-align: left;
}
.mobile-nudge-empty {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
flex: 1;
min-height: 160px;
text-align: center;
}
.mobile-nudge-pad {
display: flex;
flex-direction: column;
align-items: center;
align-self: center;
gap: 8px;
margin: 8px 0 20px;
}
.mobile-nudge-pad-row {
display: flex;
align-items: center;
gap: 8px;
}
.mobile-nudge-pad-center {
width: 52px;
height: 52px;
border-radius: 12px;
background: #333;
border: 1px dashed #4a4a4a;
}
.mobile-nudge-btn {
display: flex;
align-items: center;
justify-content: center;
width: 52px;
height: 52px;
border: 1px solid #4a4a4a;
border-radius: 12px;
background: #383838;
color: #ddd;
cursor: pointer;
touch-action: manipulation;
-webkit-tap-highlight-color: transparent;
transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.mobile-nudge-btn:active {
background: #1e3a4f;
border-color: #31a8ff;
color: #fff;
}
.mobile-nudge-info {
align-self: center;
width: 100%;
max-width: 240px;
padding: 12px 14px;
border-radius: 10px;
background: #222222;
/* border: 1px solid #1f1f1f; */
text-align: center;
}
}
@media (min-width: 768px) {