diff --git a/nuxt4/app/app.vue b/nuxt4/app/app.vue
index e4ae9fb..09e6e21 100644
--- a/nuxt4/app/app.vue
+++ b/nuxt4/app/app.vue
@@ -86,7 +86,7 @@ useHead({
}
:global(.dark) .quick-actions {
- background: rgba(15, 15, 25, 0.3);
+ background: rgba(0, 0, 0, 0.3);
box-shadow:
0 8px 32px 0 rgba(0, 0, 0, 0.5),
inset 0 1px 1px 0 rgba(255, 255, 255, 0.05);
@@ -110,7 +110,7 @@ useHead({
}
:global(.dark) .auth-message :deep(.card) {
- background: rgba(15, 15, 25, 0.3);
+ background: rgba(0, 0, 0, 0.3);
border: 1px solid rgba(255, 255, 255, 0.08);
box-shadow:
0 8px 32px 0 rgba(0, 0, 0, 0.5),
diff --git a/nuxt4/app/assets/css/main.css b/nuxt4/app/assets/css/main.css
index 7c95c6f..ba1fb1d 100644
--- a/nuxt4/app/assets/css/main.css
+++ b/nuxt4/app/assets/css/main.css
@@ -1,2 +1,46 @@
@import "tailwindcss";
@import "@nuxt/ui";
+
+/* Custom Scrollbar - Adaptable al tema */
+::-webkit-scrollbar {
+ width: 8px;
+ height: 8px;
+}
+
+::-webkit-scrollbar-track {
+ background: rgba(255, 255, 255, 0.1);
+ border-radius: 4px;
+}
+
+::-webkit-scrollbar-thumb {
+ background: rgba(0, 220, 130, 0.5);
+ border-radius: 4px;
+ transition: background 0.3s ease;
+}
+
+::-webkit-scrollbar-thumb:hover {
+ background: rgba(0, 220, 130, 0.7);
+}
+
+/* Scrollbar para modo oscuro */
+.dark ::-webkit-scrollbar-track {
+ background: rgba(0, 0, 0, 0.3);
+}
+
+.dark ::-webkit-scrollbar-thumb {
+ background: rgba(0, 220, 130, 0.6);
+}
+
+.dark ::-webkit-scrollbar-thumb:hover {
+ background: rgba(0, 220, 130, 0.8);
+}
+
+/* Firefox scrollbar */
+* {
+ scrollbar-width: thin;
+ scrollbar-color: rgba(0, 220, 130, 0.5) rgba(255, 255, 255, 0.1);
+}
+
+.dark * {
+ scrollbar-color: rgba(0, 220, 130, 0.6) rgba(0, 0, 0, 0.3);
+}
diff --git a/nuxt4/app/components/AnimatedBackground.vue b/nuxt4/app/components/AnimatedBackground.vue
index 5e7f851..74bc94a 100644
--- a/nuxt4/app/components/AnimatedBackground.vue
+++ b/nuxt4/app/components/AnimatedBackground.vue
@@ -61,7 +61,7 @@
-
-
+
diff --git a/nuxt4/app/components/UserHeader.vue b/nuxt4/app/components/UserHeader.vue
index 27dc31e..8bf1479 100644
--- a/nuxt4/app/components/UserHeader.vue
+++ b/nuxt4/app/components/UserHeader.vue
@@ -56,39 +56,38 @@
-
-
@@ -218,7 +217,7 @@ const handleSubmit = async () => {
}
:global(.dark) .header-content {
- background: rgba(15, 15, 25, 0.4);
+ background: rgba(0, 0, 0, 0.4);
box-shadow:
0 8px 32px 0 rgba(0, 0, 0, 0.5),
inset 0 1px 1px 0 rgba(255, 255, 255, 0.05);
@@ -296,12 +295,6 @@ const handleSubmit = async () => {
inset 0 1px 1px 0 rgba(255, 255, 255, 0.4);
}
-.modal-content {
- padding: 1.5rem;
- max-width: 28rem;
- margin: 0 auto;
-}
-
.edit-hint {
display: flex;
align-items: center;
@@ -349,7 +342,7 @@ const handleSubmit = async () => {
}
:global(.dark) .theme-toggle {
- background: rgba(15, 15, 25, 0.3);
+ background: rgba(0, 0, 0, 0.3);
border: 1px solid rgba(255, 255, 255, 0.1);
box-shadow:
0 4px 16px 0 rgba(0, 0, 0, 0.5),
diff --git a/nuxt4/app/components/auth/ApplicationsList.vue b/nuxt4/app/components/auth/ApplicationsList.vue
index 60dce3f..774fd7c 100644
--- a/nuxt4/app/components/auth/ApplicationsList.vue
+++ b/nuxt4/app/components/auth/ApplicationsList.vue
@@ -188,7 +188,7 @@ onUnmounted(() => {
}
:global(.dark) .applications-container {
- background: rgba(15, 15, 25, 0.35);
+ background: rgba(0, 0, 0, 0.35);
box-shadow:
0 8px 32px 0 rgba(0, 0, 0, 0.5),
inset 0 1px 1px 0 rgba(255, 255, 255, 0.05);
@@ -262,7 +262,7 @@ onUnmounted(() => {
}
:global(.dark) .app-card {
- background: rgba(20, 20, 30, 0.3);
+ background: rgba(0, 0, 0, 0.3);
border: 1px solid rgba(255, 255, 255, 0.1);
box-shadow:
0 4px 16px 0 rgba(0, 0, 0, 0.4),