Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: create page #58

Merged
merged 1 commit into from
Aug 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions src/app/sygotchi-erstellen/sygotchi-erstellen.component.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<div class="container_all">

<aside>
<form [formGroup]="characterForm">
<div class="mb-3">
Expand Down Expand Up @@ -38,6 +37,4 @@

<canvas id="canvas" height="200" width="200"></canvas>
</main>


</div>
22 changes: 10 additions & 12 deletions src/app/sygotchi-erstellen/sygotchi-erstellen.component.scss
Original file line number Diff line number Diff line change
@@ -1,25 +1,23 @@

.container_all{
display:grid;
grid-template-columns: 1fr 2fr;
margin: 0;
padding: 0;
height: 100vh;
width: 100vw;
display:grid;
grid-template-columns: 1fr 1fr;
padding: 50px;
margin-bottom: 20;

main{
background-color: #FBD189;
background-color: #eeeeee;
display: flex;
justify-content: center;
align-items: center;

}
aside{
padding: 30px;
background-color: #EFD3D2;
background-color: #e7e7e7;
.color-container{
display:flex;
justify-content: space-evenly;

}
}
}
Expand All @@ -33,5 +31,5 @@
grid-row: 2;
}
}
}

}
Loading