Skip to content

Commit

Permalink
fix(ui): Add border-radius to flags
Browse files Browse the repository at this point in the history
  • Loading branch information
vio committed Feb 25, 2022
1 parent 00152f5 commit 4f7663b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
}

.flag {
border-radius: 2px;
display: inline-block;
width: var(--space-xsmall);
height: var(--space-xsmall);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,21 @@
}

.duplicate {
margin-right: var(--space-xxxsmall);
border-radius: 2px;
display: inline-block;
width: var(--space-small);
height: var(--space-small);
font-size: 10px;
width: var(--space-xsmall);
height: var(--space-xsmall);
font-family: var(--font-family);
font-size: 8px;
font-weight: bold;
line-height: var(--space-small);
background: var(--color-highlight);
color: var(--color-text-light);
line-height: var(--space-xsmall);
text-align: center;
text-transform: uppercase;
vertical-align: middle;

margin-right: var(--space-xxxsmall);
background: var(--color-danger);
color: var(--color-light);
}
Expand Down

0 comments on commit 4f7663b

Please sign in to comment.