reverseproxy

This commit is contained in:
2026-09-07 12:46:58 +02:00
parent 93051f791d
commit cbe4726c07
16 changed files with 519 additions and 32 deletions

View File

@@ -44,3 +44,16 @@
display: flex; align-items: center; justify-content: center; z-index: 50; padding: 1em;
}
.modal { width: 100%; max-width: 420px; }
.transfer-row {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 1.4em;
}
.transfer-row input[type="file"] { margin-top: 0.3em; }
.saved-msg2 {
margin-top: 0.6em; color: #3a8a5a; font-weight: 700; font-size: 0.9rem;
opacity: 0; transition: opacity 0.3s;
}
.saved-msg2.show { opacity: 1; }