mirror of
https://github.com/supabase/supabase.git
synced 2026-07-06 12:44:31 +08:00
* Init demo world map for read replicas * Update package.json * Scaffold and mock data for flow view of project settings infrastructure configuration * Shift map stuff and install deck.gl to experiment * Flesh out map view a bit more * Scaffold deploy new replica panel * Add restart replica option * Add animations, shift node generation into utils, attempt to show region nodes * Experiments * General improvement to chart and map UI * Improve some copy writing for restart and drop replica modals * Simplify loading, error, success states in DatabaseSettings * Scaffold DB selection in connection string section * Link replica node to connection string * Scaffold database selection for SQL editor * Make DatabaseSelector into a component * Add database selector to infra activity * Update * Hide read replicas UI behind a feature flag * Update flags * Update package-lock --------- Co-authored-by: Jonathan Summers-Muir <MildTomato@users.noreply.github.com>
18 lines
246 B
SCSS
18 lines
246 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;
|
|
}
|
|
} |