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'