From 3b885ca3377735e2a38349fca3206c39d6dab5e2 Mon Sep 17 00:00:00 2001 From: zadit biasa aja <75159257+everythingonblack@users.noreply.github.com> Date: Sat, 5 Jul 2025 12:47:38 +0000 Subject: [PATCH] ok --- src/FileListComponent.js | 20 +++++++++++++++++--- src/FileListComponent.module.css | 16 ++++++++++++++++ 2 files changed, 33 insertions(+), 3 deletions(-) diff --git a/src/FileListComponent.js b/src/FileListComponent.js index 322c70d..2bd21c0 100644 --- a/src/FileListComponent.js +++ b/src/FileListComponent.js @@ -95,9 +95,23 @@ const FileListComponent = () => { return (
-

📁 Daftar Anggota

- {files.length} file tersedia -
+

📁 Daftar Anggota

+
+ + {files.length} file tersedia +
+
+ {successMessage && (
diff --git a/src/FileListComponent.module.css b/src/FileListComponent.module.css index f54da0f..53ad054 100644 --- a/src/FileListComponent.module.css +++ b/src/FileListComponent.module.css @@ -480,3 +480,19 @@ margin: 3rem auto; } } + +.downloadButton { + background-color: #00adef; + color: white; + border: none; + padding: 6px 12px; + border-radius: 8px; + cursor: pointer; + font-weight: bold; + font-size: 0.9rem; + transition: background-color 0.3s ease; +} + +.downloadButton:hover { + background-color: #008fc4; +}