fix: main scroll
This commit is contained in:
parent
dcfa1d2c5a
commit
8c4f510c12
|
@ -23,6 +23,9 @@ body {
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
font-family: 'Roboto', Arial, sans-serif;
|
font-family: 'Roboto', Arial, sans-serif;
|
||||||
font-weight: 300;
|
font-weight: 300;
|
||||||
color: #444;
|
color: #444;
|
||||||
|
|
||||||
|
overflow: hidden;
|
||||||
|
overflow-y: auto;
|
||||||
|
|
||||||
}
|
}
|
|
@ -28,16 +28,17 @@ export default class App extends Vue {
|
||||||
top: 0;
|
top: 0;
|
||||||
left: 0;
|
left: 0;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
min-height: 100%;
|
||||||
|
height: auto;
|
||||||
|
|
||||||
padding-bottom: 10rem;
|
padding-bottom: 5rem;
|
||||||
|
|
||||||
flex-flow: column nowrap;
|
flex-flow: column nowrap;
|
||||||
// justify-content: flex-start;
|
// justify-content: flex-start;
|
||||||
// align-items: auto;
|
// align-items: auto;
|
||||||
|
|
||||||
overflow: hidden;
|
// overflow: hidden;
|
||||||
overflow-y: auto;
|
// overflow-y: auto;
|
||||||
|
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in New Issue