diff options
| author | ilotterytea <iltsu@alright.party> | 2025-06-18 13:34:08 +0500 |
|---|---|---|
| committer | ilotterytea <iltsu@alright.party> | 2025-06-18 13:34:08 +0500 |
| commit | 01b4d8ac76a2a6a7ee57dd173f3894022977d2cb (patch) | |
| tree | fa35eb8093b12aa18030d834ceabeccabaedae1f /public/static | |
| parent | 1a97ab8f9fbaf93ba100ea22533ba48f524821bf (diff) | |
feat: file catalogue
Diffstat (limited to 'public/static')
| -rw-r--r-- | public/static/style.css | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/public/static/style.css b/public/static/style.css index 53c246e..7298fcb 100644 --- a/public/static/style.css +++ b/public/static/style.css @@ -271,6 +271,27 @@ button[type=submit]:hover { align-self: flex-end; } +/** FILE CATALOG (WALL) */ +.wall { + display: flex; + flex-wrap: wrap; + gap: 16px; +} + +.wall .brick { + display: flex; + align-items: center; + justify-content: center; + + width: 128px; + height: 128px; +} + +.brick img { + min-width: 100%; + height: auto; +} + /** SHORTCUTS */ .column { display: flex; |
