Skip to content

Commit

Permalink
style(select): add bg-white to base styles for select component
Browse files Browse the repository at this point in the history
RISDEV-0000
  • Loading branch information
hamo225 committed Oct 21, 2024
1 parent 97e9638 commit a50e25a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/primevue/select/select.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import "./select.css";
const select: SelectPassThroughOptions = {
root: ({ props, state }) => {
// Base
const base = tw`ris-body2-regular inline-flex h-48 items-center justify-between border-2 py-4 pl-16 pr-12 outline-4 -outline-offset-4 [&+label]:ml-8`;
const base = tw`ris-body2-regular inline-flex h-48 items-center justify-between border-2 bg-white py-4 pl-16 pr-12 outline-4 -outline-offset-4 [&+label]:ml-8`;

// States
const normal = tw`cursor-pointer border-blue-800 outline-blue-800`;
Expand Down

0 comments on commit a50e25a

Please sign in to comment.