diff options
| author | LV-426 <lv-426@taproot.org.il> | 2015-02-24 20:20:11 +0200 |
|---|---|---|
| committer | LV-426 <lv-426@taproot.org.il> | 2015-02-24 20:23:09 +0200 |
| commit | a6230be2dc73ebc540a62f6a56f847ed6f1c3a1a (patch) | |
| tree | 5254e872a26fed876d9e9216bd12fe850e4f87e8 | |
| parent | 0ac36285074d1804adb8e3ade08c461bc1c1134b (diff) | |
graph-view.scss:
- rm unnecessary width
- use variables
- expand to fill height
| -rw-r--r-- | res/client/css/by-view/graph-view.scss | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/res/client/css/by-view/graph-view.scss b/res/client/css/by-view/graph-view.scss index abce69a3..f2438abf 100644 --- a/res/client/css/by-view/graph-view.scss +++ b/res/client/css/by-view/graph-view.scss @@ -1,6 +1,6 @@ .graph-view { - width:100%; - background-color: #f5f5fa; //$light-grey + background-color: $light-grey; + height: 100%; position: relative; } @@ -206,3 +206,6 @@ } +#graph-view__canvas { + height: inherit; // inherit from container which should be set to 100% +} |
