Styling the parsed content
This commit is contained in:
parent
2098ed7508
commit
fb7a3a8189
@ -1,10 +1,12 @@
|
||||
<template>
|
||||
<div>
|
||||
<form action="." method="POST" enctype="multipart/form-data" @submit.prevent="processForm">
|
||||
<input id="file" type="file" name="file">
|
||||
<input type="submit" value="Submit">
|
||||
</form>
|
||||
<div id="content"></div>
|
||||
<div class="container is-flex is-align-items-center is-flex-direction-column">
|
||||
<form action="." method="POST" enctype="multipart/form-data" @submit.prevent="processForm">
|
||||
<label>Label, jak <strike>zákon</strike> norma káže: <input id="file" type="file" name="file"></label>
|
||||
<input type="submit" value="Submit">
|
||||
</form>
|
||||
<div id="content"></div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
@ -17,6 +19,17 @@
|
||||
}
|
||||
</style>
|
||||
|
||||
<style scoped>
|
||||
#content {
|
||||
margin-top: 5rem;
|
||||
overflow: scroll;
|
||||
}
|
||||
|
||||
.container {
|
||||
max-height: 100vh;
|
||||
}
|
||||
</style>
|
||||
|
||||
<script>
|
||||
// @ is an alias to /src
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user