Skip to content
This repository was archived by the owner on Jan 29, 2025. It is now read-only.

Commit 64417f0

Browse files
authored
Merge pull request #413 from sinfo/fix/venue
adds view of stands to the website
2 parents fd91405 + 1b1350d commit 64417f0

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

src/app/landing-page/landing-page.component.html

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,8 +189,7 @@ <h6 class="thin base-font align-center">Biggest
189189
<mat-divider></mat-divider>
190190

191191
<div #stands>
192-
<!-- TODO: Change false to event ID when stands are updated-->
193-
<app-stands *ngIf="false" [eventId]="eventId"></app-stands>
192+
<app-stands *ngIf="eventId" [eventId]="eventId"></app-stands>
194193
</div>
195194
<mat-divider></mat-divider>
196195

src/app/landing-page/stands/stands.component.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
}
3333

3434
.carousel-inner img {
35+
padding-top: 15dvh;
3536
background-color: white;
3637
max-height: 80dvh
3738
;

src/app/landing-page/stands/stands.component.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ <h3>Stands</h3>
2121

2222
<div class="item active">
2323
<img appImage
24-
[url]="'https://sinfo.ams3.cdn.digitaloceanspaces.com/static/30-sinfo/standDays/day1.webp'"
24+
[url]="'https://sinfo.ams3.cdn.digitaloceanspaces.com/static/31-sinfo/websiteImages/venue/day1.webp'"
2525
alt="Monday">
2626
<div class="carousel-caption">
2727
<h5 class="title">Monday</h5>
@@ -30,7 +30,7 @@ <h5 class="title">Monday</h5>
3030

3131
<div class="item">
3232
<img appImage
33-
[url]="'https://sinfo.ams3.cdn.digitaloceanspaces.com/static/30-sinfo/standDays/day2.webp'"
33+
[url]="'https://sinfo.ams3.cdn.digitaloceanspaces.com/static/31-sinfo/websiteImages/venue/day2.webp'"
3434
alt="Tuesday">
3535
<div class="carousel-caption">
3636
<h5 class="title">Tuesday</h5>
@@ -39,7 +39,7 @@ <h5 class="title">Tuesday</h5>
3939

4040
<div class="item">
4141
<img appImage
42-
[url]="'https://sinfo.ams3.cdn.digitaloceanspaces.com/static/30-sinfo/standDays/day3.webp'"
42+
[url]="'https://sinfo.ams3.cdn.digitaloceanspaces.com/static/31-sinfo/websiteImages/venue/day3.webp'"
4343
alt="Wednesday">
4444
<div class="carousel-caption">
4545
<h5 class="title">Wednesday</h5>
@@ -48,7 +48,7 @@ <h5 class="title">Wednesday</h5>
4848

4949
<div class="item">
5050
<img appImage
51-
[url]="'https://sinfo.ams3.cdn.digitaloceanspaces.com/static/30-sinfo/standDays/day4.webp'"
51+
[url]="'https://sinfo.ams3.cdn.digitaloceanspaces.com/static/31-sinfo/websiteImages/venue/day4.webp'"
5252
alt="Thursday">
5353
<div class="carousel-caption">
5454
<h5 class="title">Thursday</h5>
@@ -57,7 +57,7 @@ <h5 class="title">Thursday</h5>
5757

5858
<div class="item">
5959
<img appImage
60-
[url]="'https://sinfo.ams3.cdn.digitaloceanspaces.com/static/30-sinfo/standDays/day5.webp'"
60+
[url]="'https://sinfo.ams3.cdn.digitaloceanspaces.com/static/31-sinfo/websiteImages/venue/day5.webp'"
6161
alt="Friday">
6262
<div class="carousel-caption">
6363
<h5 class="title">Friday</h5>

0 commit comments

Comments
 (0)