Skip to content

Commit 2eba37e

Browse files
Merge pull request #6976 from christianbeeznest/fixes-updates167
Session: Add 8px spacing between tabs
2 parents 1919093 + e82d54e commit 2eba37e

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

assets/vue/components/basecomponents/BaseRouteTabs.vue

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
<template>
2-
<div class="flex">
2+
<div
3+
class="flex flex-wrap items-center"
4+
role="tablist"
5+
>
36
<BaseAppLink
47
v-for="(tab, index) in tabs"
58
:key="tab.title"
@@ -10,7 +13,7 @@
1013
selectedTab !== index,
1114
}"
1215
:to="tab.to"
13-
class="px-4 py-2 font-semibold"
16+
class="px-4 py-2 font-semibold mr-2 sm:mr-3 last:mr-0"
1417
role="tab"
1518
>
1619
{{ tab.title }}

0 commit comments

Comments
 (0)