Any content after Tabs will be shifted upward by .5em when the last Tab is selected.
This is due to this CSS rule:
.svelte-tabs__tab-panel { margin-top: 0.5em; }
Putting the margin on the TabList instead fixes the problem.
.svelte-tabs__tab-list { margin-bottom: .5em; }
Any content after
Tabswill be shifted upward by .5em when the last Tab is selected.This is due to this CSS rule:
.svelte-tabs__tab-panel { margin-top: 0.5em; }Putting the margin on the
TabListinstead fixes the problem..svelte-tabs__tab-list { margin-bottom: .5em; }