From 9e9e600371545cce6d8c13d203ce807cc80306a3 Mon Sep 17 00:00:00 2001 From: Lncvrt Date: Sat, 19 Jul 2025 20:21:52 -0700 Subject: [PATCH] Close button border --- src/Globals.css | 4 ++++ src/routes/Installs.css | 5 ----- src/routes/Installs.tsx | 1 - 3 files changed, 4 insertions(+), 6 deletions(-) delete mode 100644 src/routes/Installs.css diff --git a/src/Globals.css b/src/Globals.css index b703996..0e45047 100644 --- a/src/Globals.css +++ b/src/Globals.css @@ -62,3 +62,7 @@ body { .popup-entry button { @apply absolute; } + +.close-button { + @apply flex justify-center items-center absolute bg-[#323232] hover:bg-[#484848] text-2xl cursor-pointer text-gray-300 hover:text-white h-12 w-12 p-3 rounded-xl left-2 top-2 transition-colors border border-[#484848] hover:border-[#646464]; +} diff --git a/src/routes/Installs.css b/src/routes/Installs.css deleted file mode 100644 index 1f38d98..0000000 --- a/src/routes/Installs.css +++ /dev/null @@ -1,5 +0,0 @@ -@import 'tailwindcss'; - -.close-button { - @apply flex justify-center items-center absolute bg-[#323232] hover:bg-[#484848] text-2xl cursor-pointer text-gray-300 hover:text-white h-12 w-12 p-3 rounded-xl border-[none] left-2 top-2 transition-colors; -} diff --git a/src/routes/Installs.tsx b/src/routes/Installs.tsx index 4b7b2fe..ec04675 100644 --- a/src/routes/Installs.tsx +++ b/src/routes/Installs.tsx @@ -1,4 +1,3 @@ -import './Installs.css' import { useEffect } from 'react' import axios from 'axios' import { InstallsProps } from '../types/InstallsProps'