Add more distance for topics in agenda slide

Makes the projection of the agenda looks cleaner and more relaxed
This commit is contained in:
Sean 2020-06-12 14:43:40 +02:00
parent f590994875
commit 33ba8c4628
2 changed files with 16 additions and 9 deletions

View File

@ -1,4 +1,4 @@
<div *ngIf="data">
<div *ngIf="data" class="agenda-slide-wrapper">
<h1>{{ 'Agenda' | translate }}</h1>
<div

View File

@ -1,10 +1,17 @@
.item {
line-height: 34px;
}
.mainitem {
font-size: 110%;
}
.agenda-slide-wrapper {
.item {
line-height: 34px;
}
.subitem {
font-size: 90%;
.item + .item {
margin-top: 10px;
}
.mainitem {
font-size: 110%;
}
.subitem {
font-size: 90%;
}
}