Skip to content

Commit

Permalink
Merge pull request #134 from UCI-IN4MATX-191-Token-ATM/update-icon-an…
Browse files Browse the repository at this point in the history
…d-logo

Update icon and logo
  • Loading branch information
epsilonError authored Dec 17, 2024
2 parents a4929ac + 0a072ac commit fa15824
Show file tree
Hide file tree
Showing 6 changed files with 34 additions and 4 deletions.
16 changes: 13 additions & 3 deletions src/app/components/dashboard/dashboard.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,23 @@
id="sidebar"
class="d-flex flex-column flex-shrink-0 align-items-center px-3 py-5 bg-light vh-100 me-0 overflow-y-auto"
>
<img src="assets/logo3.png" alt="logo" />
<img
src="assets/tokenATMLogo.svg"
alt="logo"
class="mb-3"
style="object-fit: contain; max-width: 160px; max-height: 80px"
/>
<div class="d-flex flex-column align-items-center">
<img *ngIf="avatarUrl" [src]="avatarUrl" alt="Avatar" />
<img
*ngIf="avatarUrl"
[src]="avatarUrl"
alt="Avatar"
style="object-fit: scale-down; max-width: 128px; max-height: 128px"
/>
<p *ngIf="name">{{ name }}</p>
<p *ngIf="email">{{ email }}</p>
</div>
<div *ngIf="course" class="d-flex flex-column align-items-center my-5">
<div *ngIf="course" class="d-flex flex-column align-items-center my-4">
<p>{{ course.name }}</p>
<p>{{ course.term.name }}</p>
<p *ngIf="localTimeZone !== course.timeZone" (click)="onWarningClick()">
Expand Down
Binary file removed src/assets/logo3.png
Binary file not shown.
7 changes: 7 additions & 0 deletions src/assets/tokenATMIcon.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: 13 additions & 0 deletions src/assets/tokenATMLogo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/favicon.ico
Binary file not shown.
2 changes: 1 addition & 1 deletion src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<title>Token ATM</title>
<base href="/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" type="image/x-icon" href="favicon.ico" />
<link rel="icon" type="image/svg+xml" href="assets/tokenATMIcon.svg" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap" rel="stylesheet" />
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet" />
Expand Down

0 comments on commit fa15824

Please sign in to comment.