diff options
| author | bob <bcz@cs.brown.edu> | 2019-08-23 12:42:38 -0400 |
|---|---|---|
| committer | bob <bcz@cs.brown.edu> | 2019-08-23 12:42:38 -0400 |
| commit | f4afa471e03618169137a6533db8623aae93d6c5 (patch) | |
| tree | 77df40575e58d3e521b95a7e5b74bd52f7b36977 /src/client/views/nodes/ButtonBox.scss | |
| parent | 20f7d2dca1c115c84f6ac89981ef1e3c7c9a2757 (diff) | |
got drag drop buttons working better.
Diffstat (limited to 'src/client/views/nodes/ButtonBox.scss')
| -rw-r--r-- | src/client/views/nodes/ButtonBox.scss | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/src/client/views/nodes/ButtonBox.scss b/src/client/views/nodes/ButtonBox.scss index 5ed435505..75a790667 100644 --- a/src/client/views/nodes/ButtonBox.scss +++ b/src/client/views/nodes/ButtonBox.scss @@ -3,14 +3,29 @@ height: 100%; pointer-events: all; border-radius: inherit; - display:table; + display:flex; + flex-direction: column; } .buttonBox-mainButton { width: 100%; height: 100%; border-radius: inherit; + text-align: center; + display: table; +} +.buttonBox-mainButtonCenter { + height: 100%; display:table-cell; vertical-align: middle; - text-align: center; +} + +.buttonBox-params { + display:flex; + flex-direction: row; +} + +.buttonBox-missingParam { + width:100%; + background: lightgray; }
\ No newline at end of file |
