move tag max height declaration to input tag wrapper

We don't want to apply max height to all tags, just the ones we embed
within text/textarea input fields.
This commit is contained in:
Jake McDermott 2019-03-18 07:42:24 -04:00
parent 5b79843390
commit 05226333ff
No known key found for this signature in database
GPG Key ID: 9A6F084352C3A0B7
2 changed files with 9 additions and 6 deletions

View File

@ -346,10 +346,14 @@
display: flex;
width: 100%;
flex-wrap: wrap;
}
.at-InputTagContainer .TagComponent-name {
align-self: auto;
word-break: break-all;
font-family: 'Open Sans', sans-serif;
.TagComponent {
max-height: @at-space-4x;
}
.TagComponent-name {
align-self: auto;
word-break: break-all;
font-family: 'Open Sans', sans-serif;
}
}

View File

@ -8,7 +8,6 @@
flex-direction: row;
align-content: center;
min-height: @at-space-4x;
max-height: @at-space-4x;
overflow: hidden;
max-width: 200px;
margin: @at-space 0;