@paroicms/site-generator-plugin 0.30.9 → 0.30.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -16,6 +16,8 @@ export async function createTheme(ctx, siteDir, siteSchema) {
|
|
|
16
16
|
continue;
|
|
17
17
|
if (nodeType.kind === "part")
|
|
18
18
|
continue;
|
|
19
|
+
if (nodeType.documentKind === "routing" && nodeType.redirectTo)
|
|
20
|
+
continue;
|
|
19
21
|
themeContext.addLiquidFile("root", `${camelToKebabCase(nodeType.typeName)}.liquid`, templateOfDocumentType(themeContext, nodeType));
|
|
20
22
|
}
|
|
21
23
|
themeContext.addFile("theme.json", getThemeJsonContent());
|
|
@@ -210,12 +210,6 @@ nav a.active::after {
|
|
|
210
210
|
padding-bottom: 50px;
|
|
211
211
|
}
|
|
212
212
|
|
|
213
|
-
.Text::after {
|
|
214
|
-
clear: both;
|
|
215
|
-
content: "";
|
|
216
|
-
display: block;
|
|
217
|
-
}
|
|
218
|
-
|
|
219
213
|
.Text a,
|
|
220
214
|
.Text a:visited,
|
|
221
215
|
.TextLink,
|
|
@@ -237,8 +231,7 @@ nav a.active::after {
|
|
|
237
231
|
}
|
|
238
232
|
|
|
239
233
|
.Button,
|
|
240
|
-
.PaButton
|
|
241
|
-
.PaIconButton {
|
|
234
|
+
.PaButton {
|
|
242
235
|
background-color: #3498db;
|
|
243
236
|
border: 1px solid #3498db;
|
|
244
237
|
border-radius: 5px;
|