diff --git a/client/src/main.ts b/client/src/main.ts index 6b3f153..90cdedc 100644 --- a/client/src/main.ts +++ b/client/src/main.ts @@ -2,6 +2,7 @@ import { createApp } from 'vue' import './style.scss' import router from './router' import { state } from "./state"; +import 'bulma/css/bulma.css' import App from './App.vue' diff --git a/client/src/style.scss b/client/src/style.scss index 5ceccce..e69de29 100644 --- a/client/src/style.scss +++ b/client/src/style.scss @@ -1,33 +0,0 @@ -$background: hsl(0, 0%, 29%); // Bulma's $dark-grey -$body-background-color: hsl(0, 0%, 21%); // Bulma's $grey-darker -$text: hsl(0, 0%, 96%); // Bulma's $white-ter -$text-light: hsl(0, 0%, 98%); // Bulma's $white-bis -$text-strong: hsl(0, 0%, 93%); // Bulma's $grey-lightest - - -// must be after assignments! -@import '../node_modules/bulma/bulma.sass'; - -.modal-card-body { - background-color: $body-background-color; -} -.modal-card-head { - border-bottom: 1px solid $primary; -} - -.modal-card-foot { - border-top: 1px solid $primary; -} - -.textarea, .table, .input { - background-color: $background; - border-color: $primary; -} - -.tr, .th { - border: 1px solid $primary; -} - -.navbar { - background-color: $background; -} diff --git a/client/src/views/NewTrackView.vue b/client/src/views/NewTrackView.vue index 5413cab..a15e26a 100644 --- a/client/src/views/NewTrackView.vue +++ b/client/src/views/NewTrackView.vue @@ -31,67 +31,60 @@ const submit = async () => { \ No newline at end of file