refactor(tables & forms): refactored tables and forms styles
This commit is contained in:
448
typescript-version/pnpm-lock.yaml
generated
448
typescript-version/pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
@@ -109,34 +109,50 @@ const checkbox = ref(false)
|
||||
</VCol>
|
||||
|
||||
<!-- 👉 Remember me -->
|
||||
<VCol
|
||||
offset-md="3"
|
||||
cols="12"
|
||||
md="9"
|
||||
>
|
||||
<VCheckbox
|
||||
v-model="checkbox"
|
||||
label="Remember me"
|
||||
/>
|
||||
<VCol cols="12">
|
||||
<VRow no-gutters>
|
||||
<VCol
|
||||
cols="12"
|
||||
md="3"
|
||||
/>
|
||||
<VCol
|
||||
cols="12"
|
||||
md="9"
|
||||
>
|
||||
<VCheckbox
|
||||
v-model="checkbox"
|
||||
label="Remember me"
|
||||
/>
|
||||
</VCol>
|
||||
</VRow>
|
||||
</VCol>
|
||||
|
||||
<!-- 👉 submit and reset button -->
|
||||
<VCol
|
||||
offset-md="3"
|
||||
cols="12"
|
||||
md="9"
|
||||
class="d-flex gap-4"
|
||||
>
|
||||
<VBtn type="submit">
|
||||
Submit
|
||||
</VBtn>
|
||||
<VBtn
|
||||
color="secondary"
|
||||
variant="tonal"
|
||||
type="reset"
|
||||
>
|
||||
Reset
|
||||
</VBtn>
|
||||
<VCol cols="12">
|
||||
<VRow no-gutters>
|
||||
<VCol
|
||||
cols="12"
|
||||
md="3"
|
||||
/>
|
||||
<VCol
|
||||
cols="12"
|
||||
md="9"
|
||||
>
|
||||
<VBtn
|
||||
type="submit"
|
||||
class="me-4"
|
||||
>
|
||||
Submit
|
||||
</VBtn>
|
||||
<VBtn
|
||||
color="secondary"
|
||||
variant="tonal"
|
||||
type="reset"
|
||||
>
|
||||
Reset
|
||||
</VBtn>
|
||||
</VCol>
|
||||
</VRow>
|
||||
</VCol>
|
||||
</VRow>
|
||||
</VForm>
|
||||
|
||||
@@ -112,35 +112,51 @@ const checkbox = ref(false)
|
||||
</VRow>
|
||||
</VCol>
|
||||
|
||||
<!-- 👉 Checkbox -->
|
||||
<VCol
|
||||
offset-md="3"
|
||||
cols="12"
|
||||
md="9"
|
||||
>
|
||||
<VCheckbox
|
||||
v-model="checkbox"
|
||||
label="Remember me"
|
||||
/>
|
||||
<!-- 👉 Remember me -->
|
||||
<VCol cols="12">
|
||||
<VRow no-gutters>
|
||||
<VCol
|
||||
cols="12"
|
||||
md="3"
|
||||
/>
|
||||
<VCol
|
||||
cols="12"
|
||||
md="9"
|
||||
>
|
||||
<VCheckbox
|
||||
v-model="checkbox"
|
||||
label="Remember me"
|
||||
/>
|
||||
</VCol>
|
||||
</VRow>
|
||||
</VCol>
|
||||
|
||||
<!-- 👉 submit and reset button -->
|
||||
<VCol
|
||||
offset-md="3"
|
||||
cols="12"
|
||||
md="9"
|
||||
class="d-flex gap-4"
|
||||
>
|
||||
<VBtn type="submit">
|
||||
Submit
|
||||
</VBtn>
|
||||
<VBtn
|
||||
color="secondary"
|
||||
type="reset"
|
||||
variant="tonal"
|
||||
>
|
||||
Reset
|
||||
</VBtn>
|
||||
<VCol cols="12">
|
||||
<VRow no-gutters>
|
||||
<VCol
|
||||
cols="12"
|
||||
md="3"
|
||||
/>
|
||||
<VCol
|
||||
cols="12"
|
||||
md="9"
|
||||
>
|
||||
<VBtn
|
||||
type="submit"
|
||||
class="me-4"
|
||||
>
|
||||
Submit
|
||||
</VBtn>
|
||||
<VBtn
|
||||
color="secondary"
|
||||
variant="tonal"
|
||||
type="reset"
|
||||
>
|
||||
Reset
|
||||
</VBtn>
|
||||
</VCol>
|
||||
</VRow>
|
||||
</VCol>
|
||||
</VRow>
|
||||
</VForm>
|
||||
|
||||
@@ -68,16 +68,16 @@ const desserts = [
|
||||
<td>
|
||||
{{ item.dessert }}
|
||||
</td>
|
||||
<td class="text-center">
|
||||
<td>
|
||||
{{ item.calories }}
|
||||
</td>
|
||||
<td class="text-center">
|
||||
<td>
|
||||
{{ item.fat }}
|
||||
</td>
|
||||
<td class="text-center">
|
||||
<td>
|
||||
{{ item.carbs }}
|
||||
</td>
|
||||
<td class="text-center">
|
||||
<td>
|
||||
{{ item.protein }}
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
@@ -68,16 +68,16 @@ const desserts = [
|
||||
<td>
|
||||
{{ item.dessert }}
|
||||
</td>
|
||||
<td class="text-center">
|
||||
<td>
|
||||
{{ item.calories }}
|
||||
</td>
|
||||
<td class="text-center">
|
||||
<td>
|
||||
{{ item.fat }}
|
||||
</td>
|
||||
<td class="text-center">
|
||||
<td>
|
||||
{{ item.carbs }}
|
||||
</td>
|
||||
<td class="text-center">
|
||||
<td>
|
||||
{{ item.protein }}
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
@@ -71,16 +71,16 @@ const desserts = [
|
||||
<td>
|
||||
{{ item.dessert }}
|
||||
</td>
|
||||
<td class="text-center">
|
||||
<td>
|
||||
{{ item.calories }}
|
||||
</td>
|
||||
<td class="text-center">
|
||||
<td>
|
||||
{{ item.fat }}
|
||||
</td>
|
||||
<td class="text-center">
|
||||
<td>
|
||||
{{ item.carbs }}
|
||||
</td>
|
||||
<td class="text-center">
|
||||
<td>
|
||||
{{ item.protein }}
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
@@ -68,16 +68,16 @@ const desserts = [
|
||||
<td>
|
||||
{{ item.dessert }}
|
||||
</td>
|
||||
<td class="text-center">
|
||||
<td>
|
||||
{{ item.calories }}
|
||||
</td>
|
||||
<td class="text-center">
|
||||
<td>
|
||||
{{ item.fat }}
|
||||
</td>
|
||||
<td class="text-center">
|
||||
<td>
|
||||
{{ item.carbs }}
|
||||
</td>
|
||||
<td class="text-center">
|
||||
<td>
|
||||
{{ item.protein }}
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
@@ -71,16 +71,16 @@ const desserts = [
|
||||
<td>
|
||||
{{ item.dessert }}
|
||||
</td>
|
||||
<td class="text-center">
|
||||
<td>
|
||||
{{ item.calories }}
|
||||
</td>
|
||||
<td class="text-center">
|
||||
<td>
|
||||
{{ item.fat }}
|
||||
</td>
|
||||
<td class="text-center">
|
||||
<td>
|
||||
{{ item.carbs }}
|
||||
</td>
|
||||
<td class="text-center">
|
||||
<td>
|
||||
{{ item.protein }}
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
Reference in New Issue
Block a user