Skip to content

Commit dd3152c

Browse files
authored
[ENG-9071] Project Metadata: Tags do not have sufficient size or spacing. (#831)
* add min height of tag input to be 24px * remove redeundant role='textbox' to fix input issues
1 parent b9aa112 commit dd3152c

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

src/app/shared/components/tags-input/tags-input.component.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
class="tags-input-container flex flex-wrap align-items-center gap-1 p-inputtext"
44
[class.readonly]="readonly()"
55
tabindex="0"
6-
role="textbox"
76
[attr.aria-label]="'common.placeholder.addTag' | translate"
87
(click)="!readonly() && onContainerClick()"
98
(keydown)="!readonly() && onContainerKeydown($event)"

src/app/shared/components/tags-input/tags-input.component.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
margin: 0;
2828
box-shadow: none;
2929
height: 24px;
30+
min-height: 24px;
3031

3132
&::placeholder {
3233
color: var(--p-inputtext-placeholder-color);

0 commit comments

Comments
 (0)