mirror of
https://github.com/supabase/supabase.git
synced 2026-05-19 19:37:22 +08:00
19 lines
247 B
SCSS
19 lines
247 B
SCSS
.instance-configuration {
|
|
.react-flow__pane {
|
|
@apply cursor-default;
|
|
}
|
|
.react-flow__node {
|
|
@apply cursor-default;
|
|
}
|
|
}
|
|
|
|
.map-path {
|
|
animation: dash 8s linear infinite;
|
|
}
|
|
|
|
@keyframes dash {
|
|
to {
|
|
stroke-dashoffset: 100;
|
|
}
|
|
}
|