This commit is contained in:
Leon Liu 2024-12-30 17:19:21 +09:00
parent c3e7af7ec0
commit 603dd5c5eb
4 changed files with 4 additions and 3 deletions

BIN
bun.lockb

Binary file not shown.

View File

@ -2,6 +2,7 @@
"name": "poe2-loot-filter-tauri",
"type": "module",
"devDependencies": {
"@tailwindcss/typography": "^0.5.15",
"@types/bun": "latest",
"daisyui": "^4.12.23"
},

View File

@ -118,7 +118,7 @@ fn Main(config: POE2FilterConfig) -> impl IntoView {
let max_level = store.settings().max_level();
view! {
<main class="container p-4">
<main class="container p-4 prose max-w-none">
<ul class="list-disc pl-4 pb-2">
<li>"Config folder: %appdata%\\LeonLiu\\POE2 Loot Filter\\config"</li>
<li>
@ -139,7 +139,7 @@ fn Main(config: POE2FilterConfig) -> impl IntoView {
<li>
"From area level 11 to 69, hide normal or magic items of which the drop level is 10 level lower than the area level."
</li>
<li>
<li class="not-prose">
"In areas lower than level"
<input
class="mx-1 h-8"

View File

@ -9,5 +9,5 @@ module.exports = {
theme: {
extend: {},
},
plugins: [require('daisyui')],
plugins: [require("@tailwindcss/typography"), require('daisyui')],
}