Skip to content

Commit

Permalink
fix(input): fix typo in class names (#350) (#351)
Browse files Browse the repository at this point in the history
fix #350
  • Loading branch information
brc-dd authored Oct 3, 2023
1 parent 2d88137 commit b4a9b81
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions lib/components/SInputBase.vue
Original file line number Diff line number Diff line change
Expand Up @@ -84,23 +84,23 @@ function getErrorMsg(validation: Validatable) {

<style scoped lang="postcss">
.SInputBase.mini {
.label { padding-bottom: 6px; height: 22px; }
.label-text-value { font-size: var(--input-label-font-size, var(--input-mini-label-font-size)); }
.label-text-info { width: 14px; height: 14px; }
.label { padding-bottom: 6px; height: 22px; }
.label-text { font-size: var(--input-label-font-size, var(--input-mini-label-font-size)); }
.label-info { width: 14px; height: 14px; }
}
.SInputBase.small {
.label { padding-bottom: 8px; height: 24px; }
.label-text-value { font-size: var(--input-label-font-size, var(--input-small-label-font-size)); }
.label { padding-bottom: 8px; height: 24px; }
.label-text { font-size: var(--input-label-font-size, var(--input-small-label-font-size)); }
}
.SInputBase.medium {
.label { padding-bottom: 8px; height: 24px; }
.label-text-value { font-size: var(--input-label-font-size, var(--input-medium-label-font-size)); }
.label { padding-bottom: 8px; height: 24px; }
.label-text { font-size: var(--input-label-font-size, var(--input-medium-label-font-size)); }
}
.SInputBase.has-error {
.label-text-value {
.label-text {
color: var(--input-error-text-color);
}
}
Expand Down

0 comments on commit b4a9b81

Please sign in to comment.