Compare commits

..

No commits in common. "ac39750cd43f0dfaa9af1b1a7e12d9d0a231df93" and "b0458643bf20b7ff049ab3cd083145d553fc54dd" have entirely different histories.

5 changed files with 14804 additions and 112 deletions

14906
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -18,8 +18,6 @@
"core-js": "^3.6.5",
"eslint": "^6.7.2",
"eslint-plugin-vue": "^7.0.0",
"sass": "^1.37.5",
"sass-loader": "^10.2.0",
"vue": "^3.0.0",
"vue-router": "^4.0.0-0"
}

View File

@ -2,9 +2,7 @@
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
@import "variables";
@import "bootstrap/scss/bootstrap";
.container{
min-height: calc(100vh - 70px - 24px);
}

View File

@ -1 +0,0 @@
$primary: #0790a9;

View File

@ -5,7 +5,8 @@ import router from './router'
import axios from 'axios'
import './assets/global.scss'
import 'bootstrap/dist/css/bootstrap.min.css'
import './assets/custom.css'
const app = createApp(App)