Fix CSS issue

This commit is contained in:
Peter 2023-09-01 12:47:57 -04:00
parent 290960b31b
commit 9362c8cb9f
2 changed files with 3 additions and 3 deletions

View File

@ -3,7 +3,6 @@
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css"
integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootswatch/4.5.2/yeti/bootstrap.min.css">
<link rel="stylesheet" href="../src/assets/oldSite.css">
<head>
<meta charset="utf-8">

View File

@ -6,9 +6,10 @@ import router from './router'
import 'bootstrap/dist/css/bootstrap.min.css'
import 'bootstrap'
// import './assets/main.css'
const app = createApp(App)
import './assets/oldSite.css'
const app = createApp(App as any)
app.use(router)