diff options
| author | Geireann Lindfield Roberts <60007097+geireann@users.noreply.github.com> | 2021-12-02 14:39:40 -0500 |
|---|---|---|
| committer | Geireann Lindfield Roberts <60007097+geireann@users.noreply.github.com> | 2021-12-02 14:39:40 -0500 |
| commit | 2cb18e75aa487ff98086e15fef93e2f549c30496 (patch) | |
| tree | af24d05b564ca4e0011aee368a38eaedb7981d64 /src/client/views/InkStroke.scss | |
| parent | 2e6709216795e86c8b414dcb2dd45855cf23ea24 (diff) | |
| parent | c2cd77ca1d2a67539f0af2a68c1e7336b3bc232b (diff) | |
Merge branch 'master' into trails-aubrey
Diffstat (limited to 'src/client/views/InkStroke.scss')
| -rw-r--r-- | src/client/views/InkStroke.scss | 34 |
1 files changed, 23 insertions, 11 deletions
diff --git a/src/client/views/InkStroke.scss b/src/client/views/InkStroke.scss index 55e06c6ca..664f2448b 100644 --- a/src/client/views/InkStroke.scss +++ b/src/client/views/InkStroke.scss @@ -13,16 +13,28 @@ } } -.inkStroke { - mix-blend-mode: multiply; - stroke-linejoin: round; - stroke-linecap: round; - overflow: visible !important; - transform-origin: top left; - width: 100%; - height: 100%; +.inkStroke-wrapper { + display: flex; + align-items: center; + height: 100%; + .inkStroke { + mix-blend-mode: multiply; + stroke-linejoin: round; + stroke-linecap: round; + overflow: visible !important; + transform-origin: top left; + width: 100%; + height: 100%; + pointer-events: none; + svg:not(:root) { + overflow: visible !important; + } + } - svg:not(:root) { - overflow: visible !important; - } + .inkStroke-text { + position: absolute; + &:hover { + background: #9f9f9f0a; + } + } } |
