Skip to content

Commit

Permalink
Fix scrollbar in selectuser
Browse files Browse the repository at this point in the history
  • Loading branch information
hackenbergstefan committed Jul 30, 2024
1 parent 400d14f commit 7db7d41
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions coffeebuddy/templates/selectuser.html
Original file line number Diff line number Diff line change
Expand Up @@ -45,15 +45,15 @@
</head>

<body>
<div class="d-flex flex-column w-100 h-100 p-5">
<div class="d-flex flex-column w-100 h-100 px-5 pt-5 pb-3">
<div class="d-flex flex-row align-items-baseline mb-1">
<div class="display-1 fas fa-user mr-5"></div>
<h1>Users</h1>
</div>

{% if top_manual_users|length > 0 %}
<h3>Most frequent users</h3>
<div class="d-flex flex-column scroll-y">
<div class="d-flex flex-column scroll">
<div class="d-flex flex-row flex-wrap">
{% for user in top_manual_users %}
<div class="item" onclick="window.location.href = '../coffee.html?tag={{ user.tag.hex() }}&manually'">
Expand All @@ -65,7 +65,7 @@ <h3>Most frequent users</h3>
{% endif %}

<h3 class="mt-5">All users</h3>
<div class="d-flex flex-column scroll-y">
<div class="d-flex flex-column scroll">
{% for char, userlist in users %}
<div class="d-flex justify-content-start my-2">
<div class="h3 py-2 pr-2 mr-2 color-berry" style="border-right: 2px solid; min-width: 2.5ch;">{{char}}
Expand Down

0 comments on commit 7db7d41

Please sign in to comment.