diff options
| author | Fawn <fangrui_tong@brown.edu> | 2019-06-19 22:27:21 -0400 |
|---|---|---|
| committer | Fawn <fangrui_tong@brown.edu> | 2019-06-19 22:27:21 -0400 |
| commit | c5e401cb0a7fec2279ceecbc8d1429dcdd2f04b9 (patch) | |
| tree | d7e3b77890c3c4f3be0dca1da9c4aae71ecaead7 /src/client/views/nodes/LinkButtonBox.scss | |
| parent | f362dbfc237536c6c4a8c6d088c3dc818080f7c2 (diff) | |
buttons on cut links functional except for when dragged from link menu
Diffstat (limited to 'src/client/views/nodes/LinkButtonBox.scss')
| -rw-r--r-- | src/client/views/nodes/LinkButtonBox.scss | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/client/views/nodes/LinkButtonBox.scss b/src/client/views/nodes/LinkButtonBox.scss new file mode 100644 index 000000000..24bfd2c9f --- /dev/null +++ b/src/client/views/nodes/LinkButtonBox.scss @@ -0,0 +1,18 @@ +.linkBox-cont { + width: 200px; + height: 100px; + background-color: black; + text-align: center; + color: white; + padding: 10px; + border-radius: 5px; + position: relative; + + .linkBox-cont-wrapper { + width: calc(100% - 20px); + position: absolute; + left: 50%; + top: 50%; + transform: translate(-50%, -50%); + } +}
\ No newline at end of file |
