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

Commit

Permalink
chore(lsg): add text-transform and fixed font-size to property items
Browse files Browse the repository at this point in the history
  • Loading branch information
Tilman Frick committed Dec 15, 2017
1 parent e31dead commit 5f5602c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/lsg/patterns/property-items/enum-item/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,10 @@ const StyledSelect = styled.select`
const StyledLabel = styled.span`
display: block;
margin-bottom: ${getSpace(Size.XS)}px;
font-size: 14px;
font-size: 12px;
font-family: ${fonts().NORMAL_FONT};
color: ${colors.grey70.toString()};
text-transform: capitalize;
`;

export const EnumItem: React.StatelessComponent<EnumItemProps> = props => {
Expand Down
1 change: 1 addition & 0 deletions src/lsg/patterns/property-items/string-item/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ const StyledLabel = styled.span`
display: block;
margin-bottom: ${getSpace(Size.XS)}px;
font-size: 12px;
text-transform: capitalize;
font-family: ${fonts().NORMAL_FONT};
color: ${colors.grey70.toString()};
`;
Expand Down

0 comments on commit 5f5602c

Please sign in to comment.