diff options
Diffstat (limited to 'static')
| -rw-r--r-- | static/index.html | 1 | ||||
| -rw-r--r-- | static/style.css | 7 |
2 files changed, 8 insertions, 0 deletions
diff --git a/static/index.html b/static/index.html index abf2e8c..84264b7 100644 --- a/static/index.html +++ b/static/index.html @@ -37,6 +37,7 @@ <div class="file-section"> <label>Attachment (optional)</label> <label class="file-label" for="file">📎 Choose file</label> + <span class="file-limit">Max 8MB for now</span> <input type="file" id="file"> <span id="filename"></span> </div> diff --git a/static/style.css b/static/style.css index a2cb765..828c723 100644 --- a/static/style.css +++ b/static/style.css @@ -282,6 +282,13 @@ textarea:focus { border-color: var(--accent-green); box-shadow: 0 0 0 2px var(-- .file-label:hover { border-color: var(--accent-blue-text); color: var(--accent-blue-text); } +.file-limit { + font-size: 0.68rem; + color: var(--tagline); + margin-left: 0.6rem; + vertical-align: middle; +} + #file { display: none; } #filename { |
