Skip to content
This repository has been archived by the owner on Nov 6, 2020. It is now read-only.

Commit

Permalink
fix(file-input): implement spacing between text and link via ::after el
Browse files Browse the repository at this point in the history
  • Loading branch information
HendrikThePendric authored and varl committed Nov 20, 2019
1 parent fcc2502 commit 4894747
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/FileInput/SelectedFile.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,13 @@ const SelectedFile = ({
.label {
font-size: 14px;
color: ${colors.grey900};
margin-right: 12px;
word-break: break-word;
}
.label::after {
content: ' ';
display: inline-block;
width: 12px;
}
.action {
font-size: 12px;
line-height: 12px;
Expand Down

0 comments on commit 4894747

Please sign in to comment.