Skip to content

Commit 24a5dd0

Browse files
committed
machine-setup: fix
1 parent d08f9ab commit 24a5dd0

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

packages/machine-setup/frontend/src/main.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,14 @@ import './style.css';
22

33
import { app, events, init } from '@neutralinojs/lib';
44
import {
5-
create, NButton, NCard, NConfigProvider, NGi, NGrid, NSpace, NStatistic,
5+
create, NButton, NCard, NConfigProvider, NGi, NGrid, NNotificationProvider,
6+
NSpace, NStatistic, NTab, NTabPane, NTag,
67
} from 'naive-ui';
78
import { createApp } from 'vue';
89
import App from './App.vue';
910

1011
const naive = create({
11-
components: [NButton, NGrid, NGi, NCard, NStatistic, NSpace, NConfigProvider],
12+
components: [NButton, NGrid, NGi, NCard, NStatistic, NSpace, NConfigProvider, NTab, NTabPane, NTag, NNotificationProvider],
1213
});
1314

1415
createApp(App).use(naive).mount('#app');

packages/machine-setup/frontend/src/style.css

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,8 @@ body {
2323
width: 100%;
2424
margin: 0 auto;
2525
padding: .5rem;
26+
}
27+
28+
.text-center {
2629
text-align: center;
2730
}

0 commit comments

Comments
 (0)