fix subpixel border rendering errors in chromium based browsers

This commit is contained in:
byte[] 2020-05-21 20:19:09 -04:00
parent dbf5585749
commit 999f66f800

View file

@ -11,7 +11,7 @@
resize: both; resize: both;
} }
.tagsinput .tag { .tag-page .tag, .tagsinput .tag {
font-family: $font_family_base; font-family: $font_family_base;
padding: 5px; padding: 5px;
} }
@ -59,7 +59,7 @@
// Tags // Tags
.tag { .tag {
border: 1px solid; border: 1px solid;
display: inline-flex; display: inline-table;
align-items: center; align-items: center;
font-size: 14px; font-size: 14px;
font-weight: bold; font-weight: bold;
@ -69,6 +69,7 @@
.tag > span { .tag > span {
padding: 5px; padding: 5px;
display: table-cell;
} }
.tag a { .tag a {