add scss support

This commit is contained in:
2022-11-17 08:03:57 +01:00
parent f1cb09af3e
commit 8595448814
4 changed files with 1239 additions and 87 deletions

25
src/assets/main.scss Normal file
View File

@@ -0,0 +1,25 @@
@import 'normalize.css';
/*@import 'primevue/resources/primevue.min.css';*/
/*@import 'primevue/resources/themes/saga-blue/theme.css';*/
@import 'primevue/resources/themes/bootstrap4-dark-blue/theme.css';
html, body {
height: 100%;
overflow: hidden;
}
body {
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
}
.selectable {
-webkit-user-select: text;
-ms-user-select: text;
user-select: text;
}
#app {
height: 100%;
}