Skip to content

Commit fddf5d7

Browse files
refactor(multi): resolved issues.
1 parent 12512f9 commit fddf5d7

File tree

13 files changed

+65
-53
lines changed

13 files changed

+65
-53
lines changed

typescript-version/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
</svg>
4949

5050
</div>
51-
<div class=" loading">
51+
<div class="loading">
5252
<div class="effect-1 effects"></div>
5353
<div class="effect-2 effects"></div>
5454
<div class="effect-3 effects"></div>

typescript-version/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "master-vuetify-vuejs-admin-template",
2+
"name": "sneat-vuetify-vuejs-admin-template",
33
"version": "0.0.0",
44
"private": true,
55
"scripts": {

typescript-version/public/loader.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ html {
2525
position: absolute;
2626
box-sizing: border-box;
2727
border: 3px solid transparent;
28-
block-size: 55px;
2928
border-radius: 50%;
29+
block-size: 55px;
3030
inline-size: 55px;
3131
inset-block-start: 50%;
3232
inset-inline-start: calc(50% - 35px);
@@ -38,9 +38,9 @@ html {
3838
position: absolute;
3939
box-sizing: border-box;
4040
border: 3px solid transparent;
41+
border-radius: 50%;
4142
block-size: 100%;
4243
border-inline-start: 3px solid var(--initial-loader-color, #eee);
43-
border-radius: 50%;
4444
inline-size: 100%;
4545
}
4646

typescript-version/src/@core/scss/template/libs/vuetify/_overrides.scss

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,7 @@ $alert-prepend-icon-font-size: 1.125rem !important;
162162
}
163163
}
164164

165+
// 👉 VDatatable
165166
.v-data-table {
166167
th {
167168
background: rgb(var(--v-table-header-background)) !important;
@@ -176,3 +177,12 @@ $alert-prepend-icon-font-size: 1.125rem !important;
176177
}
177178
}
178179
}
180+
181+
// 👉 VTable
182+
.v-table {
183+
th {
184+
font-size: 0.75rem;
185+
font-weight: 500;
186+
text-transform: uppercase;
187+
}
188+
}

typescript-version/src/components/UpgradeToPro.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818
>
1919
<VCard>
2020
<VImg src="https://cdn.jsdelivr.net/gh/themeselection/ts-assets/sneat/sneat-vuetify-vuejs-admin-template/banner/banner.png" />
21-
<VCardTitle>Master - Vuetify Admin Template</VCardTitle>
21+
<VCardTitle>Sneat - Vuetify Admin Template</VCardTitle>
2222
<VCardText>
23-
Master Admin is the most developer friendly & highly customisable Admin Dashboard Template based on Vuetify.
23+
Sneat Admin is the most developer friendly & highly customisable Admin Dashboard Template based on Vuetify.
2424
</VCardText>
2525
<VCardText>Click on below button to explore PRO version.</VCardText>
2626
<VCardText>

typescript-version/src/pages/[...all].vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<script setup lang="ts">
2+
import ErrorHeader from '@/components/ErrorHeader.vue'
23
import misc404 from '@images/pages/404.png'
34
</script>
45

typescript-version/src/pages/login.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ const isPasswordVisible = ref(false)
4949
<VTextField
5050
v-model="form.email"
5151
autofocus
52+
placeholder="[email protected]"
5253
label="Email"
5354
type="email"
5455
/>

typescript-version/src/views/pages/account-settings/AccountSettingsSecurity.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ const recentDevices = [
204204
</p>
205205

206206
<VBtn>
207-
Enable two-factor authentication
207+
Enable 2FA
208208
</VBtn>
209209
</VCardText>
210210
</VCard>

typescript-version/src/views/pages/tables/DemoSimpleTableBasics.vue

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -43,18 +43,18 @@ const desserts = [
4343
<thead>
4444
<tr>
4545
<th class="text-uppercase">
46-
Desserts(100g Servings)
46+
Desserts (100g Servings)
4747
</th>
48-
<th class="text-uppercase text-center">
48+
<th>
4949
calories
5050
</th>
51-
<th class="text-uppercase text-center">
51+
<th>
5252
Fat(g)
5353
</th>
54-
<th class="text-uppercase text-center">
54+
<th>
5555
Carbs(g)
5656
</th>
57-
<th class="text-uppercase text-center">
57+
<th>
5858
protein(g)
5959
</th>
6060
</tr>
@@ -68,16 +68,16 @@ const desserts = [
6868
<td>
6969
{{ item.dessert }}
7070
</td>
71-
<td class="text-center">
71+
<td>
7272
{{ item.calories }}
7373
</td>
74-
<td class="text-center">
74+
<td>
7575
{{ item.fat }}
7676
</td>
77-
<td class="text-center">
77+
<td>
7878
{{ item.carbs }}
7979
</td>
80-
<td class="text-center">
80+
<td>
8181
{{ item.protein }}
8282
</td>
8383
</tr>

typescript-version/src/views/pages/tables/DemoSimpleTableDensity.vue

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -43,18 +43,18 @@ const desserts = [
4343
<thead>
4444
<tr>
4545
<th class="text-uppercase">
46-
Desserts(100g Servings)
46+
Desserts (100g Servings)
4747
</th>
48-
<th class="text-uppercase text-center">
48+
<th>
4949
calories
5050
</th>
51-
<th class="text-uppercase text-center">
51+
<th>
5252
Fat(g)
5353
</th>
54-
<th class="text-uppercase text-center">
54+
<th>
5555
Carbs(g)
5656
</th>
57-
<th class="text-uppercase text-center">
57+
<th>
5858
protein(g)
5959
</th>
6060
</tr>
@@ -68,16 +68,16 @@ const desserts = [
6868
<td>
6969
{{ item.dessert }}
7070
</td>
71-
<td class="text-center">
71+
<td>
7272
{{ item.calories }}
7373
</td>
74-
<td class="text-center">
74+
<td>
7575
{{ item.fat }}
7676
</td>
77-
<td class="text-center">
77+
<td>
7878
{{ item.carbs }}
7979
</td>
80-
<td class="text-center">
80+
<td>
8181
{{ item.protein }}
8282
</td>
8383
</tr>

0 commit comments

Comments
 (0)