hasanalrobasi commited on
Commit
02ba671
·
verified ·
1 Parent(s): 5998cf1

Upload styles/globals.css with huggingface_hub

Browse files
Files changed (1) hide show
  1. styles/globals.css +23 -0
styles/globals.css ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @tailwind base;
2
+ @tailwind components;
3
+ @tailwind utilities;
4
+
5
+ .react-flow__handle {
6
+ @apply bg-primary-500 w-3 h-3;
7
+ }
8
+
9
+ .react-flow__handle-left {
10
+ @apply left-[-6px];
11
+ }
12
+
13
+ .react-flow__handle-right {
14
+ @apply right-[-6px];
15
+ }
16
+
17
+ .react-flow__handle-top {
18
+ @apply top-[-6px];
19
+ }
20
+
21
+ .react-flow__handle-bottom {
22
+ @apply bottom-[-6px];
23
+ }