Skip to content

Commit

Permalink
Issue 110 remove useless scrollbar (#122)
Browse files Browse the repository at this point in the history
* Fixing scrollbar

* Styling
  • Loading branch information
SafetyInObscurity authored Jan 18, 2025
1 parent 74158eb commit 56a0a6b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
8 changes: 6 additions & 2 deletions client/src/assets/main.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// generated using https://gwfh.mranftl.com/fonts
/* generated using https://gwfh.mranftl.com/fonts */
/* poppins-100 - latin */
@font-face {
font-display: swap;
Expand Down Expand Up @@ -157,7 +157,11 @@
width: 100%;
padding: 0px;
font-family: 'Poppins';
min-height: 100vh;
min-height: 100%;
}

html {
overflow-y: auto;
}

body {
Expand Down
6 changes: 3 additions & 3 deletions client/src/main.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
import './assets/main.css'
import '@mdi/font/css/materialdesignicons.css'

import { createApp } from 'vue'
import { createPinia } from 'pinia'

Expand All @@ -11,6 +8,9 @@ import * as components from 'vuetify/components'
import * as directives from 'vuetify/directives'
import { mdi } from 'vuetify/iconsets/mdi'

import './assets/main.css'
import '@mdi/font/css/materialdesignicons.css'

import App from './App.vue'
import router from './router'

Expand Down

0 comments on commit 56a0a6b

Please sign in to comment.