From 9163649c6516bfd9f000470250aa271ef9e6911c Mon Sep 17 00:00:00 2001 From: Adam Bem Date: Mon, 30 Oct 2023 09:28:35 +0100 Subject: [PATCH] Added padding to file selector --- Frontend/src/style.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Frontend/src/style.css b/Frontend/src/style.css index 2133826..6b07af1 100644 --- a/Frontend/src/style.css +++ b/Frontend/src/style.css @@ -7,9 +7,13 @@ } .tool-button { - @apply hover:brightness-110 py-2 px-4 h-fit rounded-full bg-gradient-to-r from-blue-400 to-sky-300 dark:text-white dark:from-sky-600 dark:to-sky-800 hover:bg-blue-400 + @apply hover:brightness-110 py-2 px-4 h-fit min-w-fit rounded-full bg-gradient-to-r from-blue-400 to-sky-300 dark:text-white dark:from-sky-600 dark:to-sky-800 hover:bg-blue-400 } .text-field { @apply w-full font-mono dark:text-slate-100 bg-slate-50 dark:bg-gray-600 border border-slate-400 p-2 rounded-lg +} + +.file-selector { + @apply file:bg-inherit file:shadow-inherit dark:file:text-white file:border-inherit w-full p-2 px-4 rounded-full text-sm text-gray-900 border border-gray-300 cursor-pointer bg-gray-50 dark:text-gray-400 focus:outline-none dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 } \ No newline at end of file