first commit

This commit is contained in:
Inshal
2024-05-29 22:34:28 +05:00
commit e63fc41a20
1470 changed files with 174828 additions and 0 deletions

View File

@@ -0,0 +1,47 @@
<template>
<VCard title="Headlines">
<VCardText class="d-flex flex-column gap-y-8">
<div>
<h1 class="text-h1">
Heading 1
</h1>
<span>font-size: 2.875rem / line-height: 4.25rem / font-weight: 500</span>
</div>
<div>
<h2 class="text-h2">
Heading 2
</h2>
<span>font-size: 2.375rem / line-height: 3.5rem / font-weight: 500</span>
</div>
<div>
<h3 class="text-h3">
Heading 3
</h3>
<span>font-size: 1.75rem / line-height: 2.625rem / font-weight: 500</span>
</div>
<div>
<h4 class="text-h4">
Heading 4
</h4>
<span>font-size: 1.5rem / line-height: 2.375rem / font-weight: 500</span>
</div>
<div>
<h5 class="text-h5">
Heading 5
</h5>
<span>font-size: 1.125rem / line-height: 1.75rem / font-weight: 500</span>
</div>
<div>
<h6 class="text-h6">
Heading 6
</h6>
<span>font-size: 0.9375rem / line-height: 1.75rem / font-weight: 500</span>
</div>
</VCardText>
</VCard>
</template>

View File

@@ -0,0 +1,121 @@
<template>
<VCard title="Texts">
<VCardText>
<VRow no-gutters>
<VCol
cols="12"
md="2"
>
<p class="text-subtitle-1 text-no-wrap">
text-subtitle-1
</p>
</VCol>
<VCol
cols="12"
md="10"
class="mb-6"
>
<p class="text-subtitle-1 text-truncate mb-1">
Cupcake ipsum dolor sit amet fruitcake donut chocolate.
</p>
<span>font-size: 0.9375rem / line-height: 1.5rem / font-weight: 500</span>
</VCol>
<VCol
cols="12"
md="2"
>
<p class="text-subtitle-2 text-no-wrap">
text-subtitle-2
</p>
</VCol>
<VCol
cols="12"
md="10"
class="mb-6"
>
<p class="text-subtitle-2 mb-1">
Cupcake ipsum dolor sit amet fruitcake donut chocolate.
</p>
<span>font-size: 0.8125rem / line-height: 1.25rem / font-weight: 500</span>
</VCol>
<VCol
cols="12"
md="2"
>
<p class="text-body-1 text-no-wrap">
text-body-1
</p>
</VCol>
<VCol
cols="12"
md="10"
class="mb-6"
>
<p class="text-body-1 mb-1">
Cupcake ipsum dolor sit amet fruitcake donut chocolate.
</p>
<span>font-size: 0.9375rem / line-height: 1.375rem / font-weight: 400</span>
</VCol>
<VCol
cols="12"
md="2"
>
<p class="text-body-2 text-no-wrap">
text-body-2
</p>
</VCol>
<VCol
cols="12"
md="10"
class="mb-6"
>
<p class="text-body-2 mb-1">
Cupcake ipsum dolor sit amet fruitcake donut chocolate.
</p>
<span>font-size: 0.8125rem / line-height: 1.25rem / font-weight: 400</span>
</VCol>
<VCol
cols="12"
md="2"
>
<p class="text-caption">
text-caption
</p>
</VCol>
<VCol
cols="12"
md="10"
class="mb-6"
>
<p class="text-caption mb-1">
Cupcake ipsum dolor sit amet fruitcake donut chocolate.
</p>
<span>font-size: 0.8125rem / line-height: 1.125rem / font-weight: 400</span>
</VCol>
<VCol
cols="12"
md="2"
>
<p class="text-overline text-no-wrap">
text-overline
</p>
</VCol>
<VCol
cols="12"
md="10"
class="mb-6"
>
<p class="text-overline mb-1">
Cupcake ipsum dolor sit amet fruitcake donut chocolate.
</p>
<span>font-size: 0.75rem / line-height: 0.875rem / font-weight: 400</span>
</VCol>
</VRow>
</VCardText>
</VCard>
</template>