Fix asset settings

This commit is contained in:
2025-12-09 22:43:02 +01:00
parent 582daf6c1d
commit 65b8baabdc
3 changed files with 86 additions and 8 deletions

View File

@@ -537,6 +537,59 @@ body {
margin: 6px 0;
}
.upload-row {
display: flex;
align-items: center;
gap: 10px;
margin: 12px 0 4px;
}
.file-input-field {
display: none;
}
.file-input-trigger {
flex: 1;
display: inline-flex;
align-items: center;
gap: 12px;
padding: 10px 12px;
border: 1px dashed rgba(124, 58, 237, 0.45);
border-radius: 10px;
background: rgba(124, 58, 237, 0.08);
cursor: pointer;
transition: border-color 120ms ease, background 120ms ease;
}
.file-input-trigger:hover {
border-color: rgba(124, 58, 237, 0.8);
background: rgba(124, 58, 237, 0.14);
}
.file-input-icon {
width: 38px;
height: 38px;
border-radius: 8px;
display: grid;
place-items: center;
background: rgba(124, 58, 237, 0.16);
color: #c4b5fd;
}
.file-input-copy {
display: flex;
flex-direction: column;
gap: 4px;
}
.file-input-copy strong {
font-size: 14px;
}
.file-input-copy small {
color: #cbd5e1;
}
.title-row {
display: flex;
align-items: center;