Add support for changed items

This commit is contained in:
Tom Raithel
2017-11-24 16:09:22 +01:00
parent a75092ccfc
commit 784a5d1be6
8 changed files with 268 additions and 179 deletions

18
styles/components/tag.css Normal file
View File

@@ -0,0 +1,18 @@
.tag {
font-size: 9px;
display: inline-block;
padding: 3px 8px;
border-radius: 10px;
position: relative;
vertical-align: top;
margin-top: -2px;
left: 5px;
&--new {
background: var(--color-red);
}
&--changed {
background: var(--color-blue);
}
}