File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed
frontend/views/components Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ component.c-wrapper(
18
18
tooltip.c-feedback (
19
19
v-if ='ephemeral.isTooltipActive'
20
20
:isVisible ='true'
21
+ :anchorToElement ='true'
21
22
direction ='top'
22
23
:text ='L("Copied to clipboard!")'
23
24
)
@@ -100,7 +101,7 @@ export default ({
100
101
}
101
102
102
103
.c-feedback {
103
- position : absolute ;
104
+ position : absolute !important ;
104
105
left : 50% ;
105
106
transform : translateX (-50% );
106
107
}
Original file line number Diff line number Diff line change @@ -164,7 +164,7 @@ export default ({
164
164
case ' right' :
165
165
x = ` ${ spacing} px`
166
166
y = ' -50%'
167
- absPosition = { top: ' 50%' , left: ` 100%` }
167
+ absPosition = { top: ' 50%' , left: ' 100%' }
168
168
break
169
169
case ' left' :
170
170
x = ' -100%'
@@ -177,9 +177,9 @@ export default ({
177
177
absPosition = { bottom: ` -${ spacing} px` }
178
178
break
179
179
case ' bottom-right' :
180
- x = 0
180
+ x = ' -100% '
181
181
y = ' 100%'
182
- absPosition = { bottom: ` -${ spacing} px` , right : 0 }
182
+ absPosition = { bottom: ` -${ spacing} px` , left : ' 100% ' }
183
183
break
184
184
case ' top' :
185
185
x = ' -50%'
You can’t perform that action at this time.
0 commit comments