|
| 1 | +<script lang="ts"> |
| 2 | + import Input from '$lib/UI/Input.svelte'; |
| 3 | +</script> |
| 4 | + |
1 | 5 | <div
|
2 |
| - class="grid grid-cols-4 rounded-[6px] bg-[#404040] text-[12px] px-[8px] py-[6px] border-2 border-[#505050] text-[#b8b6b6] text-center items-center w-full gap-[8px] relative" |
| 6 | + class="grid grid-cols-4 rounded-[6px] bg-[#404040] text-[12px] px-[8px] py-[8px] border-2 border-[#505050] text-[#b8b6b6] text-center items-center w-full gap-[8px] relative" |
3 | 7 | >
|
4 | 8 | <div
|
5 | 9 | class="absolute top-[4px] left-[6px] text-[8px] tracking-wider font-semibold text-[#9a9898] italic"
|
6 | 10 | >
|
7 | 11 | MARGIN
|
8 | 12 | </div>
|
9 | 13 | <div class="col-span-6">
|
10 |
| - <input |
11 |
| - class="col-span-6 w-[32px] bg-[#404040] rounded-[2px] focus:outline-none focus:ring-2 focus:ring-[#505050] text-center mt-[2px]" |
12 |
| - value="10" |
13 |
| - autocomplete="off" |
14 |
| - /> |
| 14 | + <Input value="10" Class="mt-[2px]" /> |
15 | 15 | </div>
|
16 |
| - <input |
17 |
| - class="w-[32px] bg-[#404040] rounded-[2px] focus:outline-none focus:ring-2 focus:ring-[#505050] text-center mt-[6px]" |
18 |
| - value="40" |
19 |
| - autocomplete="off" |
20 |
| - /> |
| 16 | + <Input value="40" Class="mt-[6px]" /> |
21 | 17 |
|
22 | 18 | <!-- Padding -->
|
23 | 19 | <div
|
24 |
| - class="grid grid-cols-3 col-span-4 rounded-[6px] border-[3px] border-[#2e2f31] px-[4px] py-[12px] gap-y-[8px] relative" |
| 20 | + class="grid grid-cols-3 col-span-4 rounded-[6px] border-[3px] border-[#2e2f31] px-[4px] py-[10px] gap-y-[8px] relative" |
25 | 21 | >
|
26 | 22 | <div
|
27 | 23 | class="absolute top-[4px] left-[6px] text-[8px] tracking-wider font-semibold text-[#9a9898] italic"
|
28 | 24 | >
|
29 | 25 | PADDING
|
30 | 26 | </div>
|
31 | 27 | <div class="col-span-3">
|
32 |
| - <input |
33 |
| - class="w-[32px] bg-[#404040] rounded-[2px] focus:outline-none focus:ring-2 focus:ring-[#505050] text-center mt-[6px]" |
34 |
| - value="20" |
35 |
| - autocomplete="off" |
36 |
| - /> |
| 28 | + <Input value="20" Class="mt-[6px]" /> |
37 | 29 | </div>
|
38 | 30 | <div>
|
39 |
| - <input |
40 |
| - class="w-[32px] bg-[#404040] rounded-[2px] focus:outline-none focus:ring-2 focus:ring-[#505050] text-center" |
41 |
| - value="30" |
42 |
| - autocomplete="off" |
43 |
| - /> |
| 31 | + <Input value="30" /> |
44 | 32 | </div>
|
45 | 33 |
|
46 | 34 | <!-- Inner box -->
|
47 | 35 | <div class="flex items-center justify-center">
|
48 | 36 | <div class="bg-[#2e2f31] h-[16px] w-[28px] rounded-[4px]" />
|
49 | 37 | </div>
|
50 | 38 | <div>
|
51 |
| - <input |
52 |
| - class="w-[32px] bg-[#404040] rounded-[2px] focus:outline-none focus:ring-2 focus:ring-[#505050] text-center" |
53 |
| - value="50" |
54 |
| - autocomplete="off" |
55 |
| - /> |
| 39 | + <Input value="50" /> |
56 | 40 | </div>
|
57 | 41 | <div class="col-span-3">
|
58 |
| - <input |
59 |
| - class="w-[32px] bg-[#404040] rounded-[2px] focus:outline-none focus:ring-2 focus:ring-[#505050] text-center" |
60 |
| - value="70" |
61 |
| - autocomplete="off" |
62 |
| - /> |
| 42 | + <Input value="70" /> |
63 | 43 | </div>
|
64 | 44 | </div>
|
65 | 45 | <div>
|
66 |
| - <input |
67 |
| - class="w-[32px] bg-[#404040] rounded-[2px] focus:outline-none focus:ring-2 focus:ring-[#505050] text-center mt-[6px]" |
68 |
| - value="40" |
69 |
| - autocomplete="off" |
70 |
| - /> |
| 46 | + <Input value="40" Class="mt-[6px]" /> |
71 | 47 | </div>
|
72 | 48 | <div />
|
73 | 49 | <div class="col-span-4">
|
74 |
| - <input |
75 |
| - class="w-[32px] bg-[#404040] rounded-[2px] focus:outline-none focus:ring-2 focus:ring-[#505050] text-center my-[2px]" |
76 |
| - value="10" |
77 |
| - autocomplete="off" |
78 |
| - /> |
| 50 | + <Input value="10" Class="my-[2px]" /> |
79 | 51 | </div>
|
80 | 52 | <div />
|
81 | 53 | </div>
|
0 commit comments