Skip to content

Commit

Permalink
Merge pull request #299 from aaron1604/fix--button-width-issue
Browse files Browse the repository at this point in the history
fix: button width issue in non-webkit browser
  • Loading branch information
FalkWolsky authored Jul 20, 2023
2 parents 8ad4436 + c532736 commit 2493dc7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export function getButtonStyle(buttonStyle: ButtonStyleType) {

export const Button100 = styled(Button)<{ $buttonStyle?: ButtonStyleType }>`
${(props) => props.$buttonStyle && getButtonStyle(props.$buttonStyle)}
width: -webkit-fill-available;
width: 100%;
height: auto;
display: inline-flex;
justify-content: center;
Expand Down

0 comments on commit 2493dc7

Please sign in to comment.