diff options
| author | Henry Jameson <me@hjkos.com> | 2018-04-08 14:45:12 +0300 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2018-04-08 14:45:12 +0300 |
| commit | 4bbc3ada5d12cfd1dbccbdcb081246b00735452a (patch) | |
| tree | 1d3a61057c628187161f238547ecf2e6130ba6cd /src/components/still-image | |
| parent | 38d366f9aaee189b6ad48edea189e1d8b7f66ed6 (diff) | |
fix some incorrect radii
Diffstat (limited to 'src/components/still-image')
| -rw-r--r-- | src/components/still-image/still-image.vue | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/components/still-image/still-image.vue b/src/components/still-image/still-image.vue index 5fefe714..071e0380 100644 --- a/src/components/still-image/still-image.vue +++ b/src/components/still-image/still-image.vue @@ -16,7 +16,7 @@ width: 100%; height: 100% - &:hover canvas { + &:hover canvas { display: none; } @@ -46,7 +46,8 @@ color: #FFF; display: block; padding: 2px 4px; - border-radius: 3px; + border-radius: $fallback--tooltipRadius; + border-radius: var(--tooltipRadius, $fallback--tooltipRadius); z-index: 2; } } |
