Skip to content

Commit

Permalink
fix(settings): tup-308, "*" to "(required)"
Browse files Browse the repository at this point in the history
  • Loading branch information
wesleyboar committed Jul 6, 2022
1 parent 229428d commit 03db17a
Showing 1 changed file with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,18 @@ p.help-text:last-child {
margin-left: 0.5em;
color: var(--global-color-danger--dark);
}
/* To replace markup text "*" with new text "(required)" */
.asterisk {
width: 0;
display: inline-block;
visibility: hidden;
line-height: 0;
}
.asterisk::after {
content: '(required)';
visibility: visible;
line-height: initial;
}



Expand Down

0 comments on commit 03db17a

Please sign in to comment.