Skip to content
This repository has been archived by the owner on Nov 29, 2023. It is now read-only.

Commit

Permalink
BUG: Solved header not semibold. header font weight as 600 (sc2181)
Browse files Browse the repository at this point in the history
  • Loading branch information
guerrato committed Dec 13, 2021
1 parent a26390f commit 8bf5dc4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,14 @@ export default {

const Template = (args) => <SharingModal {...args} />
export const Default: Story<SharingModalProps> = Template.bind({})
Default.args = {
show: true
}

export const CustomValue: Story<SharingModalProps> = Template.bind({})
CustomValue.args = {
link: 'https://gameflow.tv/',
show: true,
facebook: {
app_id: 427532265538385,
display: 'popup',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,8 @@ import { Button, IconButton } from '../../buttons'
import { ModalBody, ModalHeader } from '../Modal'

export const SharingHeader = styled(ModalHeader)`
${typographyToCss(theme.typography.header1)};
font-size: 1.5rem;
font-weight: normal;
${typographyToCss(theme.typography.header2)};
font-weight: 600;
margin-top: 28px;
`

Expand Down

0 comments on commit 8bf5dc4

Please sign in to comment.