|
17 | 17 | class="modal-wrapper flex items-center z-30"
|
18 | 18 | >
|
19 | 19 | <div
|
20 |
| - class="modal max-w-md mx-5 xl:max-w-xl lg:max-w-xl md:max-w-xl bg-secondary-light dark:bg-primary-dark max-h-screen shadow-lg flex-row rounded-xl relative" |
| 20 | + class="modal max-w-md mx-5 xl:max-w-xl lg:max-w-xl md:max-w-xl bg-secondary-light dark:bg-primary-dark max-h-screen shadow-lg flex-row rounded-lg relative" |
21 | 21 | >
|
22 | 22 | <div
|
23 | 23 | class="modal-header flex justify-between gap-10 p-5 border-b border-ternary-light dark:border-ternary-dark"
|
|
31 | 31 | class="px-4 font-bold text-primary-dark dark:text-primary-light"
|
32 | 32 | @click="showModal()"
|
33 | 33 | >
|
34 |
| - X |
| 34 | + <i data-feather="x"></i> |
35 | 35 | </button>
|
36 | 36 | </div>
|
37 | 37 | <div class="modal-body p-5 w-full h-full">
|
38 | 38 | <form class="max-w-xl m-4 text-left">
|
39 |
| - <div class=""> |
| 39 | + <div class="mt-0"> |
40 | 40 | <input
|
41 |
| - class="w-full px-5 py-2 border-1 border-gray-200 dark:border-secondary-dark rounded-lg text-md dark:font-medium bg-secondary-light dark:bg-ternary-dark text-primary-dark dark:text-ternary-light" |
| 41 | + class="w-full px-5 py-2 border-1 border-gray-200 dark:border-secondary-dark rounded-md text-md dark:font-medium bg-secondary-light dark:bg-ternary-dark text-primary-dark dark:text-ternary-light" |
42 | 42 | id="name"
|
43 | 43 | name="name"
|
44 | 44 | type="text"
|
|
49 | 49 | </div>
|
50 | 50 | <div class="mt-6">
|
51 | 51 | <input
|
52 |
| - class="w-full px-5 py-2 border-1 border-gray-200 dark:border-secondary-dark rounded-lg text-md dark:font-medium bg-secondary-light dark:bg-ternary-dark text-primary-dark dark:text-ternary-light" |
| 52 | + class="w-full px-5 py-2 border-1 border-gray-200 dark:border-secondary-dark rounded-md text-md dark:font-medium bg-secondary-light dark:bg-ternary-dark text-primary-dark dark:text-ternary-light" |
53 | 53 | id="email"
|
54 | 54 | name="email"
|
55 | 55 | type="text"
|
|
60 | 60 | </div>
|
61 | 61 | <div class="mt-6">
|
62 | 62 | <select
|
63 |
| - class="w-full px-5 py-2 border-1 border-gray-200 dark:border-secondary-dark rounded-lg text-md dark:font-medium bg-secondary-light dark:bg-ternary-dark text-primary-dark dark:text-ternary-light" |
| 63 | + class="w-full px-5 py-2 border-1 border-gray-200 dark:border-secondary-dark rounded-md text-md dark:font-medium bg-secondary-light dark:bg-ternary-dark text-primary-dark dark:text-ternary-light" |
64 | 64 | id="subject"
|
65 | 65 | name="subject"
|
66 | 66 | type="text"
|
|
78 | 78 |
|
79 | 79 | <div class="mt-6">
|
80 | 80 | <textarea
|
81 |
| - class="w-full px-5 py-2 border-1 border-gray-200 dark:border-secondary-dark rounded-lg text-md dark:font-medium bg-secondary-light dark:bg-ternary-dark text-primary-dark dark:text-ternary-light" |
| 81 | + class="w-full px-5 py-2 border-1 border-gray-200 dark:border-secondary-dark rounded-md text-md dark:font-medium bg-secondary-light dark:bg-ternary-dark text-primary-dark dark:text-ternary-light" |
82 | 82 | id="message"
|
83 | 83 | name="message"
|
84 | 84 | cols="14"
|
|
100 | 100 | bg-indigo-500
|
101 | 101 | hover:bg-indigo-600
|
102 | 102 | rounded-md
|
103 |
| - sm:rounded-lg |
104 | 103 | focus:ring-1 focus:ring-indigo-900"
|
105 | 104 | type="submit"
|
106 | 105 | aria-label="Submit Request"
|
|
116 | 115 | <button
|
117 | 116 | class=" px-4
|
118 | 117 | sm:px-6
|
119 |
| - py-2 |
120 |
| - bg-indigo-400 |
121 |
| - hover:bg-indigo-500 |
| 118 | + py-2 bg-gray-600 text-primary-light hover:bg-ternary-dark dark:bg-gray-200 dark:text-secondary-dark dark:hover:bg-primary-light |
122 | 119 | rounded-md
|
123 |
| - sm:rounded-lg |
124 | 120 | font-normal
|
125 | 121 | sm:font-bold
|
126 |
| - text-primary-light |
127 | 122 | focus:ring-1 focus:ring-indigo-900"
|
128 | 123 | @click="showModal()"
|
129 | 124 | aria-label="Close Modal"
|
|
140 | 135 | </template>
|
141 | 136 |
|
142 | 137 | <script>
|
| 138 | +import feather from 'feather-icons'; |
143 | 139 | export default {
|
144 | 140 | props: ['showModal', 'modal', 'categories'],
|
145 | 141 | data() {
|
146 | 142 | return {};
|
147 | 143 | },
|
| 144 | + mounted() { |
| 145 | + feather.replace(); |
| 146 | + }, |
| 147 | + updated() { |
| 148 | + feather.replace(); |
| 149 | + }, |
148 | 150 | methods: {},
|
149 | 151 | };
|
150 | 152 | </script>
|
|
0 commit comments