SES-90 Added Game Master component #26

Merged
s426128 merged 3 commits from SES-90 into master 2020-12-12 19:39:37 +01:00
4 changed files with 7 additions and 10 deletions
Showing only changes of commit 0fd20fd2b1 - Show all commits

View File

@ -1,5 +1,5 @@
<body> <body>
<div class="container"> <div>
<router-outlet></router-outlet> <router-outlet></router-outlet>
</div> </div>
</body> </body>

View File

@ -32,7 +32,7 @@
@media (max-width: 768px) { @media (max-width: 768px) {
.container { .container {
padding-top: 70%; padding-top: 50%;
} }
.button { .button {
margin: 10px; margin: 10px;
@ -47,7 +47,7 @@
@media (min-width: 768px) { @media (min-width: 768px) {
.container { .container {
padding-top: 20%; padding-top: 10%;
} }
.button { .button {
margin: 20px; margin: 20px;

View File

@ -45,13 +45,13 @@ input {
@media (max-width: 768px) { @media (max-width: 768px) {
.container { .container {
width: 350px; width: 350px;
padding-top: 50%; padding-top: 20%;
} }
} }
@media (min-width: 768px) { @media (min-width: 768px) {
.container { .container {
width: 550px; width: 550px;
padding-top: 20%; padding-top: 10%;
} }
} }

View File

@ -14,9 +14,6 @@ export class SignInComponent {
constructor(private router: Router) {} constructor(private router: Router) {}
ngOnInit(): void {
}
onLoginButtonClick(){ onLoginButtonClick(){
//TODO connect with backend and added router //TODO connect with backend and added router
console.log("Clicked Login"); console.log("Clicked Login");