Skip to content

Commit

Permalink
Merge pull request #560 from 508312/master
Browse files Browse the repository at this point in the history
Fix for calendar overflow issue.
  • Loading branch information
bryli committed Apr 10, 2024
2 parents cc20c9f + c399058 commit 8ef407c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
1 change: 1 addition & 0 deletions hknweb/static/css/base.css
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ body {

.content {
padding-bottom: 1em;
overflow:auto;
}

/*
Expand Down
9 changes: 7 additions & 2 deletions hknweb/templates/events/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -185,10 +185,15 @@
overflow: auto;
}


@media screen and (min-width: 1000px) {
.content-wrapper {
left: 12.5%;
position: relative;
{% if show_sidebar %}
left: 5%;
{% else %}
left: 12.5%;
{% endif %}
position: relative;
}
}

Expand Down

0 comments on commit 8ef407c

Please sign in to comment.