Replies: 6 comments 3 replies
-
|
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.
-
|
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.
-
|
No, it's a build environment problem. |
Beta Was this translation helpful? Give feedback.
-
|
@GeorgiosDrivas Do you recall specifically what you did to solve it? @ka-terok Did you manage to get it sorted. |
Beta Was this translation helpful? Give feedback.
-
|
Native daisyUI's So I would separate two expectations:
If you need the dropdown menu to look exactly like the docs/design system on every platform, use a custom select/listbox component instead of native If the closed select itself is unstyled, then it is a build/config issue. But if only the opened option popup differs, that is expected native control behavior rather than missing daisyUI CSS. |
Beta Was this translation helpful? Give feedback.
-
|
I have the same issue across two different Phoenix 1.8.1 LiveView apps with daisyUI included. One of them shows The browser is always Chrome on Debian 13. Given this, how does the theory about styling the opened option list hold up? |
Beta Was this translation helpful? Give feedback.



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