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> <h1>{{ 'Agenda' | translate }}</h1>
<div <div

View File

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