diff options
Diffstat (limited to 'ui/client-style/src/node_list.css')
| -rw-r--r-- | ui/client-style/src/node_list.css | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/ui/client-style/src/node_list.css b/ui/client-style/src/node_list.css new file mode 100644 index 0000000..370d8df --- /dev/null +++ b/ui/client-style/src/node_list.css @@ -0,0 +1,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; +} |