blob: c9d66ebf3b6d897e220aaef57b5928f2c33d7840 (
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
31
|
/*
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 {
display: flex;
overflow-x: auto;
max-width: 100%;
flex-wrap: nowrap;
}
.nl.inline li {
display: inline-block;
}
|