Skip to content

Commit b50dafc

Browse files
committed
feat: better stage selectro
1 parent c9050ff commit b50dafc

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

src/components/stats/StageSelectorCategory.vue

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
<template>
2-
<div class="mt-4">
2+
<div
3+
class="mt-4"
4+
style="position: relative;"
5+
>
36
<v-subheader>
47
<v-icon class="mr-2">
58
{{ category.zones[0].icon }}
@@ -15,10 +18,12 @@
1518
right
1619
show-arrows
1720
class="mt-0 mt-md-n12"
21+
style="margin-left: 12rem; width: calc(100% - 12rem);"
1822
>
1923
<v-tab
2024
v-for="[key, data] in tabs.entries"
2125
:key="key"
26+
:style="{minWidth: category.id === 'ACTIVITY_CLOSED' ? '60px' : undefined}"
2227
>
2328
<template v-if="!data.title">
2429
{{ key }}

src/styles/global.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -784,7 +784,7 @@ html[lang^=ko] {
784784
}
785785

786786
.v-slide-group__prev, .v-slide-group__next {
787-
display: none !important
787+
/* display: none !important */
788788
}
789789

790790
.full-width {

0 commit comments

Comments
 (0)