diff options
| author | bobzel <zzzman@gmail.com> | 2023-08-16 13:31:56 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-08-16 13:31:56 -0400 |
| commit | d1e31265f8707bea63e21bf9a7b1dd10ccbf2009 (patch) | |
| tree | b9c8b7d2aa084c206d272828843fc2b2ce911089 /src/client/views/nodes/DataVizBox/components/Chart.scss | |
| parent | ad74cd03fa38a66101331ac0d3ea6cda841e3eee (diff) | |
| parent | 61fb855ec92540c48cc4cc844d3b21728e8a4754 (diff) | |
Merge pull request #206 from brown-dash/data-visualization-sarah
Data visualization sarah
Diffstat (limited to 'src/client/views/nodes/DataVizBox/components/Chart.scss')
| -rw-r--r-- | src/client/views/nodes/DataVizBox/components/Chart.scss | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/src/client/views/nodes/DataVizBox/components/Chart.scss b/src/client/views/nodes/DataVizBox/components/Chart.scss index d4f7bfb32..35e5187b2 100644 --- a/src/client/views/nodes/DataVizBox/components/Chart.scss +++ b/src/client/views/nodes/DataVizBox/components/Chart.scss @@ -3,6 +3,43 @@ flex-direction: column; align-items: center; cursor: default; + margin-top: 10px; + overflow-y: visible; + + .graph{ + overflow: visible; + } + .graph-title{ + align-items: center; + font-size: larger; + display: flex; + flex-direction: row; + margin-top: -10px; + margin-bottom: -10px; + } + .selected-data{ + align-items: center; + text-align: center; + display: flex; + flex-direction: row; + margin: 10px; + margin-top: -25px; + margin-bottom: 5px; + } + .slice { + &.hover { + stroke: black; + stroke-width: 2px; + } + } + + .histogram-bar{ + outline: thin solid black; + &.hover{ + outline: 3px solid black; + outline-offset: -3px; + } + } .tooltip { // make the height width bigger @@ -39,3 +76,9 @@ fill: red; } } +.table-container{ + overflow: scroll; + margin: 10px; + margin-left: 25px; + margin-top: 25px; +}
\ No newline at end of file |
