Skip to content

Commit

Permalink
Reduce tabs font size down to 14px (metabase#15955)
Browse files Browse the repository at this point in the history
* reduce tabs font size down to 14px

* tweak admin tabs padding

* update snapshots
  • Loading branch information
mazameli authored May 7, 2021
1 parent 754ecb8 commit 15c3a40
Show file tree
Hide file tree
Showing 3 changed files with 413 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const PermissionsTabs = ({ tab, onChangeTab }) => (
]}
onChange={onChangeTab}
underlined
py={1}
py={2}
/>
</div>
);
Expand Down
3 changes: 1 addition & 2 deletions frontend/src/metabase/components/Radio.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -134,8 +134,7 @@ BaseItem.defaultProps = {

// NORMAL
const NormalList = styled(BaseList).attrs({
className: props =>
cx(props.className, { "h3 text-bold": !props.showButtons }), // TODO: better way to merge classname?
className: props => cx(props.className, { "text-bold": !props.showButtons }), // TODO: better way to merge classname?
})``;
const NormalItem = styled(BaseItem)`
color: ${props => (props.selected ? color("brand") : null)};
Expand Down
Loading

0 comments on commit 15c3a40

Please sign in to comment.