From f2148040a3b70f6788831ef11d889050eb2af07a Mon Sep 17 00:00:00 2001 From: Jordan B Date: Wed, 22 Jul 2026 08:01:02 +0200 Subject: [PATCH] Add cursor pointer style for buttons Added cursor pointer style for buttons and roles. --- apps/dokploy/styles/globals.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/apps/dokploy/styles/globals.css b/apps/dokploy/styles/globals.css index 50c516bd1..5a9141119 100644 --- a/apps/dokploy/styles/globals.css +++ b/apps/dokploy/styles/globals.css @@ -269,6 +269,12 @@ @apply bg-background text-foreground; } + /* Cursor pointer on buttons */ + button:not([disabled]), + [role="button"]:not([disabled]) { + cursor: pointer; + } + /* Custom scrollbar styling */ ::-webkit-scrollbar { width: 0.3125rem;