Skip to content

Commit

Permalink
feat: style weekday (experiment)
Browse files Browse the repository at this point in the history
  • Loading branch information
gion-andri committed Dec 4, 2023
1 parent 8ed77d6 commit e8d0c8b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@

<ng-container *ngFor="let cat of categorizedEvents; let i = index">
<div class="day-title" [class.first]="i === 0">
<h2>{{cat.formattedDate}}</h2>
<!--<h2>{{cat.formattedDate}}</h2>-->
<h2>{{cat.formattedDateShort}} <span class="weekday">{{ cat.formattedWeekday }}</span></h2>
</div>
<ul>
<li *ngFor="let event of cat.events; let i = index">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,11 @@
h2 {
font-size: 1rem;
margin: 1rem;

.weekday {
font-family: 'Cadiz', sans-serif;
margin-left: 16px;
}
}

@include media-breakpoint-up(md) {
Expand Down

0 comments on commit e8d0c8b

Please sign in to comment.