Replies: 3 comments 1 reply
-
|
Please make a play to show the problem. Also please specify the browser and os/device where you see the problem, and how/what you use to build your web page. |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
I am not sure if this is the solution, but try to specify a theme for daisyUI, see this. |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
No, it's a build environment problem. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
The select component options have no styles.
"tailwindcss": "^4.1.17",
"daisyui": "^5.5.3",
<fieldset class="fieldset"> <legend class="fieldset-legend">Browsers</legend> <select class="select"> <option disabled selected> Pick a browser </option> <option>Chrome</option> <option>FireFox</option> <option>Safari</option> </select> <span class="label">Optional</span> </fieldset>It looks like this

But in the documentation

OS: Ubuntu 20.04
Device: PC browser: Google Chrome 122.0.6261.111
I noticed that everything works in Windows 10. I am running the same build simultaneously on windows and ubuntu
When I click on select, a message appears in the elements.

But ubuntu doesn't have that

The react app
"react": "^19.2.0",
global.css
@import "tailwindcss";
@plugin "daisyui" {
themes: "all";
}
I also tried to connect directly.
@import "tailwindcss";
@import "daisyui/daisyui.css";
@import "daisyui/themes.css";
And via cdn
Beta Was this translation helpful? Give feedback.
All reactions