Skip to content

Commit 3a03a5f

Browse files
committed
flexDirection
1 parent 82c69f6 commit 3a03a5f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tabs.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ export function tabWidget (options: TabWidgetOptions) {
182182
const rootElement: TabWidgetElement = dom.createElement('div') // 20200117a
183183

184184
rootElement.setAttribute('style', style.tabsRootElement)
185-
rootElement.style.flexDirection = (vertical ? 'row' : 'column') + (flipped ? '-reverse;' : ';')
185+
rootElement.style.flexDirection = (vertical ? 'row' : 'column') + (flipped ? '-reverse' : '')
186186

187187
const navElement = rootElement.appendChild(dom.createElement('nav'))
188188
navElement.setAttribute('style', style.tabsNavElement)

0 commit comments

Comments
 (0)