Merge pull request #33 from blockstack/fix/buttons

fix: Smaller font size
This commit is contained in:
Thomas Osmonson
2020-02-11 07:38:49 -08:00
parent 721165a218
commit 45be99bd82
2 changed files with 3 additions and 3 deletions

View File

@@ -20,13 +20,13 @@ const sizes = {
lg: {
height: 12,
minWidth: 9 * 14,
fontSize: 'body.small',
fontSize: '14px',
px: 5,
},
md: {
height: 10,
minWidth: 10,
fontSize: 'body.small',
fontSize: '14px',
px: 4,
}
};

View File

@@ -5,7 +5,7 @@ import { PseudoBoxProps } from '../pseudo-box/types';
/**
* The size of the button
*/
export type ButtonSizes = 'sm' | 'md' | 'lg';
export type ButtonSizes = 'md' | 'lg';
/**
* The color scheme of the button variant. Use the color keys passed in `theme.colors`.
*/