Skip to content

Commit

Permalink
fix(styles): emoji should be visible on safari
Browse files Browse the repository at this point in the history
  • Loading branch information
splincode committed Jul 1, 2024
1 parent 067cae4 commit 3edfa8f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import {encapsulation} from '@demo/emulate/encapsulation';
})
export class TuiTextareaExample1 {
testForm = new FormGroup({
testValue1: new FormControl('A field', Validators.required),
testValue2: new FormControl('This one can be expanded', Validators.required),
testValue1: new FormControl('A field 😅', Validators.required),
testValue2: new FormControl('This one can be expanded 😀', Validators.required),
});
}
7 changes: 5 additions & 2 deletions projects/styles/basic/main.less
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,15 @@ table {

input,
button,
select,
textarea {
select {
font-family: inherit;
color: inherit;
}

textarea {
color: inherit;
}

hr {
margin: 0;
height: 1px;
Expand Down

0 comments on commit 3edfa8f

Please sign in to comment.