Skip to content

Commit

Permalink
fix: pattern constrain spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
RomanHotsiy committed Jan 17, 2019
1 parent c04f387 commit c7436f2
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/common-elements/fields.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,16 @@ export const PatternLabel = styled(FieldLabel)`
color: #3195a6;
&::before,
&::after {
content: '/';
font-weight: bold;
}
&::before {
content: ' /';
}
&::after {
content: '/ ';
}
`;

export const ExampleValue = styled(FieldLabel)`
Expand Down

0 comments on commit c7436f2

Please sign in to comment.