Skip to content
This repository was archived by the owner on Dec 5, 2025. It is now read-only.

Commit f6a0f7b

Browse files
committed
fix: update TabItem styles for responsive design using SCSS mixins
1 parent d0b5096 commit f6a0f7b

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

components/shared/TabItem.vue

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,14 +56,23 @@ const icon = computed(() =>
5656
</script>
5757

5858
<style scoped lang="scss">
59+
@import '@/assets/styles/abstracts/mixins';
60+
5961
.control:not(:last-of-type) .explore-tabs-button {
6062
border-right: none;
6163
}
6264
6365
.control,
6466
.explore-tabs-button {
6567
width: 15rem;
66-
@apply bulma-until-widescreen:w-48 bulma-mobile:w-full;
68+
69+
@include bulma-mobile {
70+
width: 100% !important;
71+
}
72+
73+
@include bulma-until-widescreen {
74+
width: 12rem;
75+
}
6776
}
6877
6978
.full-width {

0 commit comments

Comments
 (0)