Change SidebarSubheading to div instead of span

This commit is contained in:
domyen 2019-01-31 17:17:40 -05:00
parent e13e33b59a
commit 16e944324f

View File

@ -2,8 +2,7 @@ import React from 'react';
import { styled } from '@storybook/theming';
const Heading = styled.span(({ theme }) => ({
display: 'block',
const Heading = styled.div(({ theme }) => ({
letterSpacing: '0.35em',
textTransform: 'uppercase',
fontWeight: theme.typography.weight.black,