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

fix(property-items): adjust property label colors #159

Merged
merged 1 commit into from
Dec 22, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/lsg/patterns/property-items/boolean-item/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ const StyledLabel = styled.span`
display: block;
font-size: 12px;
font-family: ${fonts().NORMAL_FONT};
color: ${colors.black.toString()};
color: ${colors.grey36.toString()};
margin-bottom: ${getSpace(Size.XS)}px;
`;

Expand Down
2 changes: 1 addition & 1 deletion src/lsg/patterns/property-items/string-item/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const StyledLabel = styled.span`
margin-bottom: ${getSpace(Size.XS)}px;
font-size: 12px;
font-family: ${fonts().NORMAL_FONT};
color: ${colors.black.toString()};
color: ${colors.grey36.toString()};
`;

const StyledInput = styled.input`
Expand Down