Skip to content

Commit c157613

Browse files
committed
docs: post-migration adjustments in examples
1 parent 0c79a8d commit c157613

File tree

12 files changed

+20
-29
lines changed

12 files changed

+20
-29
lines changed

packages/docs/src/components/components/ListItem.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
</template>
3030
</v-card>
3131

32-
<h2 class="text-title-large">
32+
<h2 class="text-title-large mt-4 mb-n3 font-weight-medium">
3333
<span class="text-capitalize">{{ name?.replace(/-/g, ' ') }}</span>
3434
</h2>
3535

packages/docs/src/examples/v-autocomplete/misc-state-selector.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<template>
22
<v-card>
3-
<v-card-title class="text-headline-small font-weight-regular bg-blue-grey">
3+
<v-card-title class="font-weight-regular bg-blue-grey py-3">
44
Profile
55
</v-card-title>
66

packages/docs/src/examples/v-card/misc-card-reveal.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
<v-card-text>
77
<div>Word of the Day</div>
88

9-
<p class="text-headline-large font-weight-black">el·ee·mos·y·nar·y</p>
9+
<div class="text-headline-large font-weight-black mb-4">el·ee·mos·y·nar·y</div>
1010

11-
<p>adjective</p>
11+
<div class="mb-4">adjective</div>
1212

1313
<div class="text-medium-emphasis">
1414
relating to or dependent on charity; charitable; charitable donations. Pertaining to alms.<br>

packages/docs/src/examples/v-card/misc-information-card.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
<v-card-text>
77
<div>Word of the Day</div>
88

9-
<p class="text-headline-large font-weight-black">be•nev•o•lent</p>
9+
<div class="text-headline-large font-weight-black mb-4">be•nev•o•lent</div>
1010

11-
<p>adjective</p>
11+
<div class="mb-4">adjective</div>
1212

1313
<div class="text-medium-emphasis">
1414
well meaning and kindly.<br>

packages/docs/src/examples/v-card/misc-shopify-funding.vue

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,16 @@
11
<template>
22
<v-container>
33
<v-card>
4-
<v-card-title class="text-label-medium text-uppercase">
5-
Progress
4+
<v-card-title>
5+
<div class="text-label-medium text-uppercase my-1">Progress</div>
66

77
<div class="text-green-darken-3 text-display-medium font-weight-bold">90%</div>
88

99
<div class="text-title-large text-medium-emphasis font-weight-regular">
1010
$2,938.00 remaining
1111
</div>
1212
</v-card-title>
13-
<br>
14-
<v-card-text>
13+
<v-card-text class="pt-2 mt-8">
1514
<div
1615
:style="`right: calc(${review} - 32px)`"
1716
class="position-absolute mt-n8 text-body-small text-green-darken-3"

packages/docs/src/examples/v-card/misc-weather-card.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<v-card-text class="py-0">
2020
<v-row align="center" no-gutters>
2121
<v-col
22-
class="text-display-large"
22+
class="text-display-large font-weight-light"
2323
cols="6"
2424
>
2525
64&deg;F

packages/docs/src/examples/v-card/prop-color.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
>
4646
<v-card-item>
4747
<div>
48-
<div class="text-label-medium text-uppercase mb-1">
48+
<div class="text-label-medium text-uppercase mt-2 mb-3">
4949
{{ variant }}
5050
</div>
5151
<div class="text-title-large mb-1">

packages/docs/src/examples/v-data-iterator/misc-filter.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434

3535
<v-list-item :subtitle="item.raw.subtitle" class="mb-2">
3636
<template v-slot:title>
37-
<strong class="text-title-large mb-2">{{ item.raw.title }}</strong>
37+
<strong class="d-block text-title-large py-2 text-truncate">{{ item.raw.title }}</strong>
3838
</template>
3939
</v-list-item>
4040

packages/docs/src/examples/v-data-iterator/slot-default.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
start
2222
></v-icon>
2323

24-
<h4>{{ item.raw.name }}</h4>
24+
<h4 class="my-0 text-title-large font-weight-medium">{{ item.raw.name }}</h4>
2525
</v-card-title>
2626

2727
<v-card-text>

packages/docs/src/examples/v-data-iterator/slot-header-and-footer.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
subtitle="Lorem ipsum dil orei namdie dkaf"
6565
>
6666
<template v-slot:title>
67-
<strong class="text-title-large">
67+
<strong class="d-block text-title-large py-2 text-truncate">
6868
{{ item.raw.name }}
6969
</strong>
7070
</template>

0 commit comments

Comments
 (0)