Fix column style

This commit is contained in:
kPherox 2019-05-19 23:36:32 +09:00
parent a931e82f41
commit f35ab35bda
No known key found for this signature in database
GPG Key ID: C04751C2BFA2F62D
2 changed files with 11 additions and 0 deletions

View File

@ -42,4 +42,7 @@ export default class Main extends Vue {
</script>
<style lang="postcss">
#main {
height: 100vh;
}
</style>

View File

@ -113,4 +113,12 @@ export default class Column extends Vue {
</script>
<style scoped lang="postcss">
.timeline {
height: 100%;
overflow-y: scroll;
.header {
position: sticky;
top: 0;
}
}
</style>