mirror of
https://github.com/getredash/redash.git
synced 2025-12-25 01:03:20 -05:00
20 lines
316 B
Plaintext
20 lines
316 B
Plaintext
/* Sankey Visualization */
|
|
.sankey .node rect {
|
|
fill-opacity: .9;
|
|
shape-rendering: crispEdges;
|
|
stroke-width: 0;
|
|
}
|
|
.sankey .node text {
|
|
text-shadow: 0 1px 0 #fff;
|
|
}
|
|
.sankey .link {
|
|
fill: none;
|
|
stroke: #000;
|
|
stroke-opacity: .2;
|
|
}
|
|
|
|
.sankey-visualization-container {
|
|
height: 500px;
|
|
overflow: hidden;
|
|
}
|