Skip to content

Commit

Permalink
💄 dirty fix for title height
Browse files Browse the repository at this point in the history
Signed-off-by: Marcus Fihlon <[email protected]>
  • Loading branch information
McPringle committed Mar 30, 2024
1 parent 2ab846b commit 4fc556b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions frontend/themes/apus/views/session-view.css
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@

.card .title {
font-size: var(--lumo-font-size-m);
line-height: var(--lumo-line-height-s);
height: 30px;
}

.card .speaker {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/swiss/fihlon/apus/ui/view/SessionView.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public SessionView(@NotNull final String room,
setPadding(false);
addClassNames("session-view", "card", getAdditionalClassName(startTime, endTime));
add(createHeaderElement(room, startTime, endTime));
addAndExpand(createTitleElement(title));
add(createTitleElement(title));
add(createSpeakerElement(speaker));
}

Expand Down

0 comments on commit 4fc556b

Please sign in to comment.