Skip to content

Commit

Permalink
Felt like it could use a logo, a shitty logo
Browse files Browse the repository at this point in the history
  • Loading branch information
Bjorkbat committed Apr 1, 2018
1 parent d6cd2d8 commit 6306c11
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
1 change: 1 addition & 0 deletions assets/layercake.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 12 additions & 1 deletion src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@
</div>

<div class="container form-container" v-if="!parsed">

<img src="assets/layercake.svg" style="max-width: 33%; max-height: 20%"/>
<h1>Layercake</h1>
<p class="lead">Put your SVGs in the oven, receive freshly-baked 3D models.</p>

<form v-on:submit.prevent="parseSVG">

<textarea class="form-control" type="file" id="UploadPictures"
Expand All @@ -13,6 +18,7 @@
<button type="submit">Submit</button>

</form>

</div>

<button class="btn btn-default save-button" v-if="parsed" v-on:click="save">
Expand Down Expand Up @@ -461,11 +467,16 @@ body, html {
}
.form-container {
min-height: 100%;
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
& > * {
margin: 20px auto;
}
form {
display: block;
width: 100%;
Expand Down

0 comments on commit 6306c11

Please sign in to comment.