Skip to content

Commit

Permalink
🔨 Update element class
Browse files Browse the repository at this point in the history
  • Loading branch information
devmount committed Sep 12, 2024
1 parent 9427803 commit 94fdd13
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/tbpro/elements/TextInput.vue
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ const onChange = () => {
<span v-if="required && model?.length === 0" class="required">*</span>
</span>
<div class="tbpro-input">
<span v-if="prefix" ref="inputPrefix" class="prefix">{{ prefix }}</span>
<span v-if="prefix" ref="inputPrefix" class="tbpro-input-prefix">{{ prefix }}</span>
<input
class="tbpro-input-element"
v-model="model"
Expand Down Expand Up @@ -144,7 +144,7 @@ const onChange = () => {
display: inline-block;
position: relative;
.prefix {
.tbpro-input-prefix {
position: absolute;
top: .675em;
left: 12px;
Expand Down

0 comments on commit 94fdd13

Please sign in to comment.