fix: main scroll

This commit is contained in:
Adrien Marquès 2019-05-09 18:56:46 +02:00
parent dcfa1d2c5a
commit 8c4f510c12
2 changed files with 9 additions and 5 deletions

View File

@ -23,6 +23,9 @@ body {
font-size: 16px;
font-family: 'Roboto', Arial, sans-serif;
font-weight: 300;
color: #444;
color: #444;
overflow: hidden;
overflow-y: auto;
}

View File

@ -28,16 +28,17 @@ export default class App extends Vue {
top: 0;
left: 0;
width: 100%;
height: 100%;
min-height: 100%;
height: auto;
padding-bottom: 10rem;
padding-bottom: 5rem;
flex-flow: column nowrap;
// justify-content: flex-start;
// align-items: auto;
overflow: hidden;
overflow-y: auto;
// overflow: hidden;
// overflow-y: auto;
}
</style>