Skip to content

Commit abd6cdc

Browse files
committed
update content tab padding
1 parent 0b58034 commit abd6cdc

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nih-sparc/sparc-design-system-components",
3-
"version": "0.27.3",
3+
"version": "0.27.4",
44
"private": false,
55
"scripts": {
66
"serve": "vue-cli-service serve",

src/components/ContentTabCard/src/ContentTabCard.vue

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,26 +6,26 @@
66
:is="linkComponent"
77
:to="{ query: queryParams(tab.id) }"
88
@click.native="$emit('tab-changed', tab)"
9-
:class="[{ active: tab.id === activeTabId }, tabStyle, tabClass, 'tab-link p-8']"
9+
:class="[{ active: tab.id === activeTabId }, tabStyle, tabClass, 'tab-link p-16']"
1010
>
1111
{{ tab.label }}
1212
</component>
1313
<a v-else-if="tab.href"
14-
:class="[{ active: tab.id === activeTabId }, tabStyle, tabClass, 'tab-link p-8']"
14+
:class="[{ active: tab.id === activeTabId }, tabStyle, tabClass, 'tab-link p-16']"
1515
:href="tab.href"
1616
target="_blank"
1717
>
1818
{{ tab.label }}
1919
</a>
2020
<a
2121
v-else
22-
:class="[{ active: tab.id === activeTabId }, tabStyle, tabClass, 'tab-link p-8']"
22+
:class="[{ active: tab.id === activeTabId }, tabStyle, tabClass, 'tab-link p-16']"
2323
@click.prevent="$emit('tab-changed', tab)"
2424
>
2525
{{ tab.label }}
2626
</a>
2727
</span>
28-
<div class="content mt-8 p-16">
28+
<div class="content mt-16 p-16">
2929
<slot />
3030
</div>
3131
</div>

0 commit comments

Comments
 (0)