Skip to content

Commit

Permalink
💄 less room for the agenda, more room for social media posts
Browse files Browse the repository at this point in the history
Signed-off-by: Marcus Fihlon <[email protected]>
  • Loading branch information
McPringle committed Mar 28, 2024
1 parent bb424bd commit 27d3fa7
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 23 deletions.
38 changes: 19 additions & 19 deletions frontend/themes/apus/views/conference-view.css
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
position: absolute;
top: 0;
left: 0;
width: 1300px;
width: 870px;
height: 1080px;
overflow: clip;
}
Expand All @@ -46,51 +46,51 @@
}

#session-2 {
top: 57px;
left: 860px;
top: 227px;
left: 0;
}

#session-3 {
top: 261px;
left: 0;
top: 227px;
left: 430px;
}

#session-4 {
top: 261px;
left: 430px;
top: 397px;
left: 0;
}

#session-5 {
top: 261px;
left: 860px;
top: 397px;
left: 430px;
}

#session-6 {
top: 465px;
top: 567px;
left: 0;
}

#session-7 {
top: 465px;
top: 567px;
left: 430px;
}

#session-8 {
top: 465px;
left: 860px;
top: 737px;
left: 0;
}

#session-9 {
top: 669px;
left: 0;
top: 737px;
left: 430px;
}

#session-10 {
top: 669px;
left: 430px;
top: 907px;
left: 0;
}

#session-11 {
top: 669px;
left: 860px;
top: 907px;
left: 430px;
}
2 changes: 1 addition & 1 deletion frontend/themes/apus/views/session-view.css
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
border-radius: 5px;
display: inline-block;
width: 400px;
height: 174px;
height: 140px;
margin-left: 10px;
margin-bottom: 10px;
padding: 10px;
Expand Down
4 changes: 2 additions & 2 deletions frontend/themes/apus/views/social-view.css
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
background-color: #1aa3b1;
position: absolute;
top: 0;
left: 1300px;
width: 600px;
left: 870px;
width: 1030px;
height: 1060px;
overflow: clip;
padding: 10px;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/swiss/fihlon/apus/ui/view/SocialView.java
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ private void updateScheduler() {

private void updateMessages() {
messageContainer.removeAll();
for (final Message message : socialService.getMessages(30)) {
for (final Message message : socialService.getMessages(8)) {
messageContainer.add(new MessageView(message));
}
}
Expand Down

0 comments on commit 27d3fa7

Please sign in to comment.