Skip to content
This repository has been archived by the owner on Oct 4, 2024. It is now read-only.

Commit

Permalink
fix: remove max-width (#177)
Browse files Browse the repository at this point in the history
* fix: remove max-height

* feat: add flavicon

* remove flaticon
  • Loading branch information
Jstn2004 authored May 14, 2024
1 parent f91bb40 commit 9b1e0ac
Show file tree
Hide file tree
Showing 14 changed files with 8 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
height: 100vh;
display: flex;
flex-direction: column;
max-width: 428px;
background-color: var(--background-black);
margin: 0;
padding: 0;
Expand Down
Empty file.
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ export class LoginformComponent {
this.showPassword = !this.showPassword;
this.passwordFieldType = this.showPassword ? 'text' : 'password';
this.img = this.showPassword
? '../../../assets/ausblenden.png'
: '../../../assets/aussicht.png';
? '../../../assets/icons/ausblenden.png'
: '../../../assets/icons/aussicht.png';
}

login()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export class SignupformComponent {
this.showPassword = !this.showPassword;
this.passwordFieldType = this.showPassword ? 'text' : 'password';
this.img = this.showPassword
? '../../../assets/ausblenden.png'
: '../../../assets/aussicht.png';
? '../../../assets/icons/ausblenden.png'
: '../../../assets/icons/aussicht.png';
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ <h2>{{ eventservice.steps }}</h2>
</div>

<div class="streak">
<img src="../../../../assets/f7--flame.svg" alt="Icon Streak" />
<img src="../../../../assets/icons/f7--flame.svg" alt="Icon Streak" />
<h2>0000</h2>
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
padding: 0;
background-color: var(--black-2);
width: 100%;
max-width: 428px;
height: 130px;
position: fixed;
top: 0;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@

<app-statistic-header></app-statistic-header>
<div class="center-container">
<div class="main">
<app-statistic-header></app-statistic-header>
<app-roadmap></app-roadmap>
</div>

</div>
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
flex-direction: column;
width: 100%;
height: 100vh;
background-color: lighten($color: #0f0f0f, $amount: 5%);
background-color: var(--background-black);

.main {
width: 100%;
Expand Down
Empty file.
File renamed without changes
File renamed without changes
2 changes: 1 addition & 1 deletion frontend/src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<title>duogradus. | Sammle Schritte, Tritt gegen Freunde an und steig in der Liga auf</title>
<base href="/">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="frontend\src\Logo_1_black.ico" type="image/x-icon">
<link rel="icon" type="image/x-icon" href="Logo_1_black.ico">
</head>
<body>
<app-root></app-root>
Expand Down

0 comments on commit 9b1e0ac

Please sign in to comment.