Browse Source

Merge pull request #597 from danditomaso/fix/content-overflow-issue

fix: defined height to html/body elements
pull/599/head
Dan Ditomaso 1 year ago
committed by GitHub
parent
commit
7ab4254cd0
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 21
      src/index.css

21
src/index.css

@ -71,6 +71,23 @@
} }
} }
html {
overflow: hidden;
}
html,
body {
height: 100%;
}
body {
font-family: var(--font-sans);
}
.app-container {
height: 100%;
}
@layer base { @layer base {
*, *,
@ -80,10 +97,6 @@
::file-selector-button { ::file-selector-button {
border-color: var(--color-slate-200, currentColor); border-color: var(--color-slate-200, currentColor);
} }
body {
font-family: var(--font-sans);
}
} }
@layer components { @layer components {

Loading…
Cancel
Save