We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 988bddc commit 294bb52Copy full SHA for 294bb52
1 file changed
app/components/Compare/FacetBarChart.vue
@@ -195,7 +195,9 @@ const config = computed<VueUiHorizontalBarConfig>(() => {
195
},
196
underlayerColor: colors.value.bg,
197
198
- highlighter: { opacity: 5 },
+ highlighter: {
199
+ opacity: isMobile.value ? 0 : 5,
200
+ },
201
202
legend: {
203
show: false,
@@ -212,6 +214,7 @@ const config = computed<VueUiHorizontalBarConfig>(() => {
212
214
213
215
216
tooltip: {
217
+ show: !isMobile.value,
218
borderColor: 'transparent',
219
backdropFilter: false,
220
backgroundColor: 'transparent',
0 commit comments