added bootstrap
This commit is contained in:
8
src/assets/bootstrap.extensions.scss
vendored
Normal file
8
src/assets/bootstrap.extensions.scss
vendored
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
//@use 'sass:map';
|
||||||
|
//@import '~bootstrap/scss/bootstrap';
|
||||||
|
//@import '~bootstrap/scss/variables';
|
||||||
|
//@import '~bootstrap/scss/mixins';
|
||||||
|
|
||||||
|
.c-pointer {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
11
src/assets/main.css
Normal file
11
src/assets/main.css
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
body {
|
||||||
|
height: 100vh;
|
||||||
|
width: 100vw;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
#app {
|
||||||
|
height: 100vh;
|
||||||
|
width: 100vw;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
10
src/main.ts
10
src/main.ts
@@ -4,7 +4,17 @@ import {createPinia} from 'pinia';
|
|||||||
import App from './App.vue';
|
import App from './App.vue';
|
||||||
import router from './router';
|
import router from './router';
|
||||||
|
|
||||||
|
import './assets/main.css';
|
||||||
|
import './assets/bootstrap.extensions.scss';
|
||||||
|
import 'bootstrap/dist/css/bootstrap.css';
|
||||||
|
// noinspection ES6UnusedImports
|
||||||
|
import * as bootstrap from 'bootstrap';
|
||||||
|
// noinspection ES6UnusedImports
|
||||||
|
import * as popper from '@popperjs/core';
|
||||||
|
import '@fortawesome/fontawesome-free/css/all.css';
|
||||||
import {createI18n} from '@/locale/locale';
|
import {createI18n} from '@/locale/locale';
|
||||||
|
import 'vue3-toastify/dist/index.css';
|
||||||
|
|
||||||
|
|
||||||
const app = createApp(App);
|
const app = createApp(App);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user