video-shuoshan/web/src/components/InputBar.module.css
seaislee1209 aa538443b6
All checks were successful
Build and Deploy / build-and-deploy (push) Successful in 2m10s
feat: v0.12.3 种子值支持 + UI 修复
①Seed 种子值全链路(后端传入/保存火山返回的seed/API返回,详情弹窗显示)
②前端种子值控件暂禁用(样式待调整)
③空页面文案改为品牌彩蛋 Every frame was once just air.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-22 23:22:22 +08:00

49 lines
824 B
CSS

/* Hide number input spinners */
:global(.hide-spin::-webkit-outer-spin-button),
:global(.hide-spin::-webkit-inner-spin-button) {
-webkit-appearance: none;
margin: 0;
}
.wrapper {
width: 100%;
padding: 8px 16px 20px;
}
.container {
max-width: var(--input-bar-max-width);
margin: 0 auto;
}
.bar {
background: var(--color-bg-input-bar);
border: 1px solid var(--color-border-input-bar);
border-radius: var(--radius-input-bar);
transition: border-color 0.2s;
}
.inputArea {
padding: 16px 16px 8px;
display: flex;
gap: 12px;
}
.divider {
height: 1px;
background: var(--color-border-input-bar);
margin: 0 16px;
opacity: 0.5;
}
@media (min-width: 768px) and (max-width: 1023px) {
.container {
max-width: 90%;
}
}
@media (max-width: 767px) {
.container {
max-width: 95%;
}
}