@@ -33,7 +33,10 @@ const CustomizationOptions: React.FC<CustomizationOptionsProps> = ({ options, on
33
33
</ div >
34
34
{ /* Use Icons */ }
35
35
< div className = "flex items-center justify-between" >
36
- < Label htmlFor = "use-icons" > Use Icons</ Label >
36
+ < div className = "flex flex-col" >
37
+ < Label htmlFor = "use-icons" > Use Icons</ Label >
38
+ < span className = "text-xs text-muted-foreground italic" > BOTH VIEW</ span >
39
+ </ div >
37
40
< Switch
38
41
id = "use-icons"
39
42
checked = { options . useIcons }
@@ -42,7 +45,10 @@ const CustomizationOptions: React.FC<CustomizationOptionsProps> = ({ options, on
42
45
</ div >
43
46
{ /* Show Line Numbers */ }
44
47
< div className = "flex items-center justify-between" >
45
- < Label htmlFor = "show-line-numbers" > Show Line Numbers</ Label >
48
+ < div className = "flex flex-col" >
49
+ < Label htmlFor = "show-line-numbers" > Show Line Numbers</ Label >
50
+ < span className = "text-xs text-muted-foreground italic" > ASCII VIEW ONLY</ span >
51
+ </ div >
46
52
< Switch
47
53
id = "show-line-numbers"
48
54
checked = { options . showLineNumbers }
@@ -51,7 +57,10 @@ const CustomizationOptions: React.FC<CustomizationOptionsProps> = ({ options, on
51
57
</ div >
52
58
{ /* Show Descriptions */ }
53
59
< div className = "flex items-center justify-between" >
54
- < Label htmlFor = "show-descriptions" > Show Descriptions</ Label >
60
+ < div className = "flex flex-col" >
61
+ < Label htmlFor = "show-descriptions" > Show Descriptions</ Label >
62
+ < span className = "text-xs text-muted-foreground italic" > ASCII VIEW ONLY</ span >
63
+ </ div >
55
64
< Switch
56
65
id = "show-descriptions"
57
66
checked = { options . showDescriptions }
@@ -60,7 +69,10 @@ const CustomizationOptions: React.FC<CustomizationOptionsProps> = ({ options, on
60
69
</ div >
61
70
{ /* Root Directory */ }
62
71
< div className = "flex items-center justify-between" >
63
- < Label htmlFor = "show-root-directory" > Root Directory</ Label >
72
+ < div className = "flex flex-col" >
73
+ < Label htmlFor = "show-root-directory" > Root Directory</ Label >
74
+ < span className = "text-xs text-muted-foreground italic" > ASCII VIEW ONLY</ span >
75
+ </ div >
64
76
< Switch
65
77
id = "show-root-directory"
66
78
checked = { options . showRootDirectory }
@@ -69,7 +81,10 @@ const CustomizationOptions: React.FC<CustomizationOptionsProps> = ({ options, on
69
81
</ div >
70
82
{ /* Trailing Slash */ }
71
83
< div className = "flex items-center justify-between" >
72
- < Label htmlFor = "show-trailing-slash" > Trailing Slash</ Label >
84
+ < div className = "flex flex-col" >
85
+ < Label htmlFor = "show-trailing-slash" > Trailing Slash</ Label >
86
+ < span className = "text-xs text-muted-foreground italic" > ASCII VIEW ONLY</ span >
87
+ </ div >
73
88
< Switch
74
89
id = "show-trailing-slash"
75
90
checked = { options . showTrailingSlash }
0 commit comments