Skip to content

Commit 7fc5f15

Browse files
Merge pull request #24 from webdevnerdstuff/dev
Dev
2 parents 9c20c94 + d665419 commit 7fc5f15

27 files changed

+1302
-275
lines changed

src/documentation/DocsPage.vue

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,14 @@
7575
<!-- Usage -->
7676
<UsageSection :codeBlockOptions="codeBlockOptions" />
7777

78+
<!-- Example -->
79+
<ExampleSection />
80+
81+
<!-- Playground -->
82+
<PlaygroundSection :codeBlockOptions="codeBlockOptions" />
83+
7884
<!-- Props -->
79-
<PropsSection />
85+
<PropsSection :codeBlockOptions="codeBlockOptions" />
8086

8187
<!-- Cell Rendering -->
8288
<CellRenderingSection :codeBlockOptions="codeBlockOptions" />
@@ -87,9 +93,6 @@
8793
<!-- Slots -->
8894
<SlotsSection :codeBlockOptions="codeBlockOptions" />
8995

90-
<!-- Example -->
91-
<ExampleSection />
92-
9396
<!-- Dependencies -->
9497
<DependenciesSection />
9598

@@ -111,6 +114,7 @@ import {
111114
ExampleSection,
112115
LegalSection,
113116
LicenseSection,
117+
PlaygroundSection,
114118
PropsSection,
115119
SlotsSection,
116120
UsageSection,
@@ -129,8 +133,8 @@ const links = inject('links');
129133
130134
const classes = reactive({
131135
appLink: 'app-link text-decoration-none primary--text font-weight-medium d-inline-block font-weight-bold',
132-
h2: 'v-heading text-h4 text-sm-h4 mb-3',
133-
h3: 'v-heading text-h5 text-sm-h5 mb-1',
136+
h2: 'v-heading text-h4 text-sm-h4 mb-2',
137+
h3: 'v-heading text-h5 text-sm-h5 mb-0',
134138
headerA: 'text-decoration-none text-right text-md-left d-none d-sm-flex',
135139
});
136140
const componentVersion = ref(packageInfo.version);

src/documentation/components/FeaturesTable.vue

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,13 @@
88
>#</a>
99
{{ sectionTitle }}
1010
</h3>
11-
<div
12-
v-if="subtitle"
13-
v-html="subtitle"
14-
></div>
11+
</v-col>
12+
13+
<v-col
14+
v-if="subtitle"
15+
cols="12"
16+
>
17+
<div v-html="subtitle"></div>
1518
</v-col>
1619
</v-row>
1720

0 commit comments

Comments
 (0)