Tags that are larger than the input area cause an overflow that isn't handled.
A quick fix for this should be something along the lines of:
.tags-input .tag {
display: inline-block;
overflow-wrap: break-word;
white-space: normal;
height: auto;
max-width: calc(100% - 1rem);
}
Tags that are larger than the input area cause an overflow that isn't handled.
A quick fix for this should be something along the lines of: