Skip to content

Commit

Permalink
Merge pull request #28 from DominikNoga/Feature/fixHeaderAndHistory
Browse files Browse the repository at this point in the history
fixed the header and history display is working again
  • Loading branch information
DawJas authored May 26, 2024
2 parents 94bda48 + d6feccd commit e735369
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ $burger-gap: .5rem;
@include simpleFlexLayout($gap: $burger-gap);
@include hoverEffect();
z-index: 1000;

.bar {
@include basicBoxShadow(.5rem, .2);
width: 2rem;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,6 @@ background-color: $white-darker;
}
}



.burger-wrapper {
background-color: $primary-bg-color;
display: grid;
Expand All @@ -48,7 +46,7 @@ background-color: $white-darker;
}

.triangle {
$triangle-size: calc($logo-size + 3rem);
$triangle-size: calc($logo-size + 2rem);
width: 0;
height: 0;
border-left: $triangle-size solid $primary-bg-color;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<div *ngIf="events && events.length > 0" class="carousel-container">
<div class="history-tile fade" *ngFor="let event of events; let i=index " [ngClass]="{'tile-active':selectedIndex===i}">
<div class="history-tile fade2" *ngFor="let event of events; let i=index " [ngClass]="{'tile-active':selectedIndex===i}">
<h2>{{ event.title }}</h2>
<p class="event-paragraph" *ngIf="event.topic"><fa-icon [icon]="lightbulbIcon"></fa-icon><span>{{ event.topic }}</span></p>
<p class="event-paragraph"><fa-icon [icon]="locationIcon"></fa-icon> <span>{{ event.location }}</span></p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
opacity:1;
}

.fade{
.fade2{
animation-name: fade;
animation-duration: 0.5s;
}
Expand Down

0 comments on commit e735369

Please sign in to comment.