Skip to content

Commit 87a8900

Browse files
committed
Merge branch 'feature/change_password' into dev
2 parents 183eab7 + d18b99d commit 87a8900

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

Diff for: client/src/components/ui/LabeledItem.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const props = defineProps({
2020
<span :class="props.uiStyle.labelClasses()">
2121
{{ props.label }}
2222
</span>
23-
<span :class="props.uiStyle.inputTextDefaultClasses()">
23+
<span :class="props.uiStyle.textClasses()">
2424
<slot></slot>
2525
</span>
2626
</div>

Diff for: client/src/ui_styles/AbstractStyle.js

+3
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,9 @@ class AbstractStyle {
4242
const baseColor = this.baseColor()
4343
return `p-4 w-full text-${baseColor}-50 border border-${baseColor}-300 ring-${baseColor}-800`
4444
}
45+
textClasses() {
46+
return 'text-gray-700 dark:text-gray-300'
47+
}
4548
severity() {
4649
return null
4750
}

0 commit comments

Comments
 (0)