atproto explorer
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

add list-style-type rule

+3 -2
+2 -2
src/components/json.tsx
··· 123 123 124 124 const JSONArray = ({ data, repo }: { data: JSONType[]; repo: string }) => { 125 125 return ( 126 - <ul style="list-style-type: '- '"> 126 + <ul class="list-dash"> 127 127 {data.map((value, index) => ( 128 128 <li 129 129 classList={{ 130 - "mb-3": value === Object(value) && index != data.length - 1, 130 + "mb-3": value === Object(value) && index !== data.length - 1, 131 131 }} 132 132 > 133 133 <JSONValue data={value} repo={repo} />
+1
uno.config.ts
··· 2 2 3 3 export default defineConfig({ 4 4 presets: [presetIcons(), presetUno()], 5 + rules: [["list-dash", { "list-style-type": "'- '" }]], 5 6 });