Skip to content

Commit 765c98c

Browse files
committed
feat(site): optimize SaaS official website style and practice field
1 parent 16f4ce7 commit 765c98c

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

examples/sites/playground/App.vue

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,8 @@ const createImportMap = (version) => {
8989
}
9090
if (isSaas) {
9191
imports['@opentiny/vue-icon'] = `${getRuntime(version)}tiny-vue-icon-saas.mjs`
92+
imports['@opentiny/vue-common'] = `${getRuntime(version)}tiny-vue-saas-common.mjs`
93+
imports['@opentiny/vue'] = `${getRuntime(version)}tiny-vue-all.mjs`
9294
}
9395
return {
9496
imports

examples/sites/src/views/layout/layout.vue

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -261,9 +261,15 @@ export default defineComponent({
261261
.tiny-tree-node__content:hover {
262262
border-radius: 20px;
263263
}
264+
264265
.tiny-tree-node__content {
265266
height: 40px;
266267
line-height: 40px;
268+
269+
.tiny-tree-node__content-left {
270+
padding-left: 16px;
271+
}
272+
267273
&::before {
268274
display: none;
269275
}
@@ -301,8 +307,8 @@ export default defineComponent({
301307
}
302308
.absolute-tag {
303309
position: absolute;
304-
right: 4px;
305-
top: 18px;
310+
right: 8px;
311+
top: 13px;
306312
}
307313
.tiny-tree {
308314
height: calc(100% - var(--layout-tree-menu-input-height));

0 commit comments

Comments
 (0)