dylancito
dylancito
SSolidJS
Created by dylancito on 12/17/2023 in #support
Why does solid-router break DaisyUI styles?
these docs are so half baked
26 replies
SSolidJS
Created by dylancito on 12/17/2023 in #support
Why does solid-router break DaisyUI styles?
26 replies
SSolidJS
Created by dylancito on 12/17/2023 in #support
Why does solid-router break DaisyUI styles?
26 replies
SSolidJS
Created by dylancito on 12/17/2023 in #support
Why does solid-router break DaisyUI styles?
26 replies
SSolidJS
Created by dylancito on 12/17/2023 in #support
Why does solid-router break DaisyUI styles?
26 replies
SSolidJS
Created by dylancito on 12/17/2023 in #support
Why does solid-router break DaisyUI styles?
26 replies
SSolidJS
Created by dylancito on 12/17/2023 in #support
Why does solid-router break DaisyUI styles?
so the best place for solidjs docs is solidstart which is a different framework built on solidjs?
26 replies
SSolidJS
Created by dylancito on 12/17/2023 in #support
Why does solid-router break DaisyUI styles?
source for the router? i did go off of the github readme for the router, but what about for other solidjs stuff are the docs not the place to look rn?
26 replies
SSolidJS
Created by dylancito on 12/17/2023 in #support
Why does solid-router break DaisyUI styles?
what do you mean by source?
26 replies
SSolidJS
Created by dylancito on 12/17/2023 in #support
Why does solid-router break DaisyUI styles?
right is how it should look, left is how it did look. daisyUI will follow your system theme and i had mine in dark mode
26 replies
SSolidJS
Created by dylancito on 12/17/2023 in #support
Why does solid-router break DaisyUI styles?
No description
26 replies
SSolidJS
Created by dylancito on 12/17/2023 in #support
Why does solid-router break DaisyUI styles?
after removing the date picking component, daisyUI works as expecting with solidrouter 👍
26 replies
SSolidJS
Created by dylancito on 12/17/2023 in #support
Why does solid-router break DaisyUI styles?
@benton__ @lxsmnsyc 🤖 thank you both for the replies. the issue was found to be conflicting styles with a date picking component that was being used on one of the pages
26 replies
SSolidJS
Created by dylancito on 12/17/2023 in #support
Why does solid-router break DaisyUI styles?
But either way I got the routes to work without' that import, but it messed up my daisyUI styles and I can’t for the life of me figure out why that would effect the styles
26 replies
SSolidJS
Created by dylancito on 12/17/2023 in #support
Why does solid-router break DaisyUI styles?
The docs seem all sorts of messed up rn…
26 replies
SSolidJS
Created by dylancito on 12/17/2023 in #support
Why does solid-router break DaisyUI styles?
No description
26 replies
SSolidJS
Created by dylancito on 12/17/2023 in #support
Why does solid-router break DaisyUI styles?
No description
26 replies
SSolidJS
Created by dylancito on 12/17/2023 in #support
Why does solid-router break DaisyUI styles?
index.tsx
import { render } from "solid-js/web";
import { Router, Route } from "@solidjs/router";
import "./index.css";

import App from "./App";
import Home from "./Home";
import Config from "./pages/Config";
import Scan from "./pages/Scan";
import Monitor from "./pages/Monitor";

render(
() => (
<Router>
<Route path="/" component={App} />
<Route path="/home" component={Home} />
<Route path="/config" component={Config} />
<Route path="/scan" component={Scan} />
<Route path="/monitor" component={Monitor} />
</Router>
),
document.getElementById("root") as HTMLElement
);
import { render } from "solid-js/web";
import { Router, Route } from "@solidjs/router";
import "./index.css";

import App from "./App";
import Home from "./Home";
import Config from "./pages/Config";
import Scan from "./pages/Scan";
import Monitor from "./pages/Monitor";

render(
() => (
<Router>
<Route path="/" component={App} />
<Route path="/home" component={Home} />
<Route path="/config" component={Config} />
<Route path="/scan" component={Scan} />
<Route path="/monitor" component={Monitor} />
</Router>
),
document.getElementById("root") as HTMLElement
);
26 replies
SSolidJS
Created by dylancito on 12/17/2023 in #support
Why does solid-router break DaisyUI styles?
No description
26 replies