summaryrefslogtreecommitdiff
path: root/src/styles/globals.css
diff options
context:
space:
mode:
authorit-fixcomart <it@fixcomart.co.id>2024-06-21 11:01:35 +0700
committerit-fixcomart <it@fixcomart.co.id>2024-06-21 11:01:35 +0700
commit220190db66bcc1c6db78180c593f21e9cf8f363c (patch)
tree1517faa9636a6b3b2cc8d468a57b1fe476c229d7 /src/styles/globals.css
parent208b234320b6c42491a4e87a1c3db3abab9c1715 (diff)
parent1cf754b4d8da1aa28700ffc3dad67081f6daf9a5 (diff)
Merge branch 'promotion-program' into feature/all-promotion
Diffstat (limited to 'src/styles/globals.css')
-rw-r--r--src/styles/globals.css20
1 files changed, 19 insertions, 1 deletions
diff --git a/src/styles/globals.css b/src/styles/globals.css
index bf9fec10..f6561b00 100644
--- a/src/styles/globals.css
+++ b/src/styles/globals.css
@@ -107,7 +107,7 @@ button {
disabled:bg-gray_r-5;
}
- .form-input[aria-invalid="true"] {
+ .form-input[aria-invalid='true'] {
@apply border-danger-500
focus:border-danger-500;
}
@@ -676,3 +676,21 @@ button {
@apply text-warning-500;
}
}
+
+::-webkit-scrollbar {
+ width: 12px;
+}
+
+::-webkit-scrollbar-track {
+ background-color: transparent;
+}
+
+::-webkit-scrollbar-thumb {
+ background-color: #888;
+ border-radius: 6px;
+ border: 3px solid #f5f5f5;
+}
+
+::-webkit-scrollbar-thumb:hover {
+ background-color: #555;
+}