This commit is contained in:
tiago.kayaya
2021-06-24 12:31:46 +01:00
parent c85e2a3659
commit 2f54a7b33b
2 changed files with 5 additions and 4 deletions
+1 -1
View File
@@ -56,7 +56,7 @@
<div class="schedule-details"> <div class="schedule-details">
<div class="location">{{event.Location}}</div> <div class="location">{{event.Location}}</div>
<div class="description"> <div class="description">
{{event.Subject}} <p>{{event.Subject}}</p>
</div> </div>
</div> </div>
</div> </div>
+4 -3
View File
@@ -408,7 +408,7 @@ ion-toolbar{
display: flex; display: flex;
flex-wrap: wrap; flex-wrap: wrap;
align-items: center; align-items: center;
width: 100%; width: 78%;
.location{ .location{
font-family: Roboto; font-family: Roboto;
font-size: 13px; font-size: 13px;
@@ -417,12 +417,13 @@ ion-toolbar{
} }
.description{ .description{
width: 275px; width: 100%;
font-family: Roboto; font-family: Roboto;
font-size: 15px; font-size: 15px;
font-weight: bold; font-weight: bold;
color: #0d89d1; color: #0d89d1;
}
.description p{
white-space: nowrap; white-space: nowrap;
overflow: hidden !important; overflow: hidden !important;
text-overflow: ellipsis !important; text-overflow: ellipsis !important;