blob: 370d8df421eb681df3e302dc04f389f2345e0539 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
/*
This file is part of jellything (https://codeberg.org/metamuffin/jellything)
which is licensed under the GNU Affero General Public License (version 3); see /COPYING.
Copyright (C) 2026 metamuffin <metamuffin.org>
*/
.nl.grid {
padding: 1em;
padding-left: 3em;
padding-right: 3em;
list-style: none;
width: 100%;
box-sizing: border-box;
display: flex;
}
.nl.grid {
flex-wrap: wrap;
}
.nl.grid li {
display: block;
}
.nl.inline {
overflow-x: auto;
max-width: 100%;
flex-wrap: nowrap;
}
.nl.inline li {
display: inline-block;
}
|