Skip to content

Commit abc4ee2

Browse files
committed
make tables more compact
1 parent a57ce2a commit abc4ee2

20 files changed

Lines changed: 1021 additions & 45 deletions

package-lock.json

Lines changed: 997 additions & 39 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "windows-multitool",
33
"private": true,
4-
"version": "0.4.1",
4+
"version": "0.4.2",
55
"type": "module",
66
"repo": "BoringBoredom/Windows-MultiTool",
77
"scripts": {

src/COMPATIBILITY_OPTIONS/AddPath.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ export default function AddPath({
2525
return (
2626
<Group>
2727
<ActionIcon
28+
size="xs"
2829
variant="filled"
2930
color="green"
3031
onClick={() => {
@@ -73,6 +74,7 @@ export default function AddPath({
7374
</ActionIcon>
7475

7576
<TextInput
77+
size="xs"
7678
value={name}
7779
className={s.addPath}
7880
placeholder="Enter process path"

src/COMPATIBILITY_OPTIONS/Options.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,7 @@ export default function Options({
122122

123123
<Table.Td>
124124
<Select
125+
size="xs"
125126
clearable
126127
value={data[4]}
127128
data={["PERPROCESSSYSTEMDPIFORCEOFF", "PERPROCESSSYSTEMDPIFORCEON"]}
@@ -149,6 +150,7 @@ export default function Options({
149150

150151
<Table.Td>
151152
<Select
153+
size="xs"
152154
clearable
153155
value={data[5]}
154156
data={["HIGHDPIAWARE", "DPIUNAWARE", "GDIDPISCALING DPIUNAWARE"]}
@@ -253,6 +255,7 @@ export default function Options({
253255

254256
<Table.Td>
255257
<Select
258+
size="xs"
256259
clearable
257260
value={data[9]}
258261
data={[

src/COMPATIBILITY_OPTIONS/Table.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ export default function TableComponent({
3131
<Table.Td>
3232
<Group>
3333
<ActionIcon
34+
size="xs"
3435
variant="filled"
3536
color="red"
3637
onClick={() => {

src/IFEO/AddProcess.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ export default function AddNewProcess({
1616
return (
1717
<Group>
1818
<ActionIcon
19+
size="xs"
1920
variant="filled"
2021
color="green"
2122
onClick={() => {
@@ -66,6 +67,7 @@ export default function AddNewProcess({
6667
</ActionIcon>
6768

6869
<TextInput
70+
size="xs"
6971
value={name}
7072
className={s.addProcess}
7173
placeholder="Enter process name"

src/IFEO/CpuPriority.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ export default function CpuPriorityField({ data }: { data: IfeoDataValue }) {
1010

1111
return (
1212
<Select
13+
size="xs"
1314
clearable
1415
value={value}
1516
data={[

src/IFEO/IoPriority.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ export default function IoPriorityField({ data }: { data: IfeoDataValue }) {
1010

1111
return (
1212
<Select
13+
size="xs"
1314
clearable
1415
value={value}
1516
data={[

src/IFEO/PagePriority.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ export default function PagePriorityField({ data }: { data: IfeoDataValue }) {
1010

1111
return (
1212
<Select
13+
size="xs"
1314
clearable
1415
value={value}
1516
data={[

src/IFEO/index.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,7 @@ export default function IFEO() {
158158
<Table.Td>
159159
<Group>
160160
<ActionIcon
161+
size="xs"
161162
variant="filled"
162163
color="red"
163164
onClick={() => {

0 commit comments

Comments
 (0)