Merge pull request #5419 from tsiegleauq/agenda-slide-distance

Add more distance for topics in agenda slide
This commit is contained in:
Emanuel Schütze 2020-06-15 15:12:52 +02:00 committed by GitHub
commit ac4cb39105
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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%;
}
}