Only use scrollable feed container on large screens
This commit is contained in:
parent
2e23740a44
commit
27091f8648
1 changed files with 1 additions and 1 deletions
|
|
@ -106,7 +106,7 @@
|
||||||
{% for group, feeds in data %}
|
{% for group, feeds in data %}
|
||||||
<section>
|
<section>
|
||||||
<h2 class="text-xl">{{ group }}</h2>
|
<h2 class="text-xl">{{ group }}</h2>
|
||||||
<div class="overflow-y-auto max-h-96">
|
<div class="lg:overflow-y-auto lg:max-h-96">
|
||||||
{% for feed in feeds %}
|
{% for feed in feeds %}
|
||||||
<details class="group">
|
<details class="group">
|
||||||
<summary
|
<summary
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue