This commit is contained in:
33333-33333 2026-06-24 17:39:44 +09:00
commit 9ef1b8dbb1
23 changed files with 329 additions and 96 deletions

View file

@ -442,7 +442,7 @@ h1 {
}
.signboard-editor.hidden { display: none; }
.signboard-editor-panel {
width: min(430px, calc(100vw - 28px));
width: min(220px, calc(100vw - 28px));
border-radius: 18px;
padding: 14px;
background: linear-gradient(180deg, rgba(255,253,247,0.98), rgba(245,237,221,0.96));
@ -476,8 +476,11 @@ h1 {
}
.signboard-editor-close:hover { background: rgba(255,248,232,0.96); }
#signboardEditorText {
width: 100%;
width: 7.4em;
max-width: 100%;
box-sizing: border-box;
display: block;
margin: 0 auto;
resize: none;
min-height: 88px;
max-height: 88px;
@ -498,6 +501,8 @@ h1 {
}
.signboard-editor-meta {
display: flex;
flex-wrap: wrap;
gap: 2px 8px;
justify-content: space-between;
color: var(--muted);
font-size: 12px;
@ -505,8 +510,8 @@ h1 {
}
.signboard-editor-actions {
display: flex;
justify-content: flex-end;
flex-wrap: wrap;
justify-content: center;
gap: 8px;
margin-top: 12px;
}