File tree 1 file changed +6
-5
lines changed
1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -20,14 +20,15 @@ const isSettingsDialogVisible = ref(false);
20
20
modal
21
21
header =" App Settings"
22
22
:pt =" {
23
+ root: { class: 'w-full md:w-3/4 xl:w-1/2' },
23
24
content: { class: 'pt-1' }
24
25
}"
25
26
>
26
- <div class =" grid grid-cols-2 gap-2" >
27
- <div class =" text-left " >
27
+ <div class =" grid grid-cols-2 md:grid-cols-4 gap-2" >
28
+ <div class =" text-right text-xs py-2 " >
28
29
Color Mode
29
30
</div >
30
- <div >
31
+ <div class = " md:col-span-3 " >
31
32
<Button
32
33
@click =" mode.preference = mode.preference === 'system' ? 'dark' : mode.preference === 'dark' ? 'light' : 'system'"
33
34
size =" small"
@@ -51,14 +52,14 @@ const isSettingsDialogVisible = ref(false);
51
52
</Button >
52
53
</div >
53
54
54
- <div class =" text-left " >
55
+ <div class =" text-right text-xs py-2 " >
55
56
Jersey Color
56
57
</div >
57
58
<div >
58
59
<ColorPicker v-model =" props.appSettings.jerseyColor" format =" hex" />
59
60
</div >
60
61
61
- <div class =" text-left " >
62
+ <div class =" text-right text-xs py-2 " >
62
63
Jersey Text Color
63
64
</div >
64
65
<div >
You can’t perform that action at this time.
0 commit comments