This commit is contained in:
Peter Maquiran
2023-06-10 12:19:46 +01:00
parent ab43d697ea
commit de531bc550
7 changed files with 44 additions and 15 deletions
+2 -2
View File
@@ -96,7 +96,7 @@
<ion-item class="item-hover cursor-pointer" lines="none" *ngFor="let event of listToPresent"
(click)="goToEvent(event)"
>
<div class="d-flex content-{{sessoStore.user.Profile}}-{{event.CalendarName}}">
<div class="d-flex event-box-content content-{{sessoStore.user.Profile}}-{{event.CalendarName}}">
<div class="schedule-time">
<div *ngIf="!event.IsAllDayEvent" class="time-start">{{event.StartDate | date: 'HH:mm'}}</div>
@@ -109,7 +109,7 @@
<div class="schedule-details">
<div class="description">{{event.Subject}}</div>
<div class="location">
<p>{{event.Location}}</p>
{{event.Location}}
</div>
</div>
</div>
+12 -3
View File
@@ -437,7 +437,6 @@ ion-toolbar{
}
.schedule-date{
margin-right: 10px;
width: 22%;
color: #797979 !important;
font-size: 13px;
}
@@ -449,7 +448,6 @@ ion-toolbar{
.location{
font-family: Roboto;
font-size: 15px;
font-weight: bold;
color: black;
width: 100%;
@@ -458,6 +456,7 @@ ion-toolbar{
width: 100%;
font-family: Roboto;
font-size: 13px;
font-weight: bold;
//color: #0d89d1;
color: var(--title-text-color)
}
@@ -641,4 +640,14 @@ ion-title{
margin-left: 0px !important;
margin-right: 0px !important;
}
}
}
.item-exp {
justify-content: flex-start !important;
}
.event-box-content {
justify-content: flex-start !important;
}