Fixed Thread view tag display

Short of changing the margin on the tags, I'm not sure how to tackle this - but the margin is specifically set so that tags don't take up more or less space than regular text, leaving a bit of a conundrum.
 
Short of changing the margin on the tags, I'm not sure how to tackle this - but the margin is specifically set so that tags don't take up more or less space than regular text, leaving a bit of a conundrum.
Changing .tagItem padding and margin to:
CSS:
.tagItem {
        padding: 0 6px 1px;
        margin: 0 0 1px;
}

Seems to work alright from what I see. The current top padding makes the tag text seem lower in it's element than it should be.

padding: 1px 6px; 1504790139299.webp

padding; 0 6px 1px; 1504790171342.webp

After that change there is 1px extra room to add back to margin. Which ends up looking like:
1504790280542.webp

Above is changing maring: -1px 0; to margin: 0 0 1px; though 2px looks a tad better.
1504790456389.webp

Just some feedback ;)
 
Top Bottom