Validate uniqueness of tags and ignore global tag duplicates

This commit is contained in:
Franc Camps-Febrer
2018-11-08 12:17:43 -05:00
parent 8bf4e6c775
commit 8fcba69051
3 changed files with 59 additions and 8 deletions

View File

@@ -57,15 +57,23 @@
overflow: hidden;
display: flex;
flex-direction: column;
border-radius: 3px;
margin-top: 10px;
padding: 10px;
background: $darkgrey;
color: $offwhite;
font-family: monospace;
&.true {
height: auto;
transition: height 0.4s;
transition: height 0.4s, margin 0.4s;
}
&.false {
height: 0;
transition: height 0.4s;
padding: 0;
margin: 0;
transition: height 0.4s, margin 0.4s;
}
}
}