Open SumitKumarDev10 opened 1 year ago
Using Tailwind CSS's hover state variants and box-shadow utilities, you can achieve the effect. For example:
<button class="bg-blue-500 text-white font-bold py-2 px-4 rounded hover:bg-blue-600 hover:shadow-md">
Taxonomy
</button>
this is still open or closed ? can i work on this?
this is still open or closed ? can i work on this?
Hi @shiv-2810 , I'm actively working on this issue. It's still open, and I'll update it once I have a solution or progress to share.
Hey Everybody! I have been able to do the shadow hover effect in light color scheme but i am facing some difficulties while implementing the same in dark color scheme. Is there any variable in the code that I can import to taxonomy/app/(marketing)/page.tsx? Please let me know the same. Thank You in advance!😊
You want to create a shadow effect that adapts to both light and dark themes, you have a couple of options:
Global CSS Class:
globals.css
.:root
and .dark
.
:root {
--shadow-color [Your Light Mode Shadow Color];
}
.dark { --shadow-color [Your Dark Mode Shadow Color]; }
and then use tailwind box-shadow class:
```<button class="bg-indigo-500 shadow-lg shadow-shadow-color">Get Started</button>```
or of course you can also create a custom class and use this
.custom-shadow { box-shadow: var(--shadow-color); }
When you switch to dark mode, the shadow color will change accordingly. This is a clean approach if you use the shadow effect on many elements across your project.
2. **Tailwind's Dark Mode Variant**:
- Define styles specifically for dark mode using Tailwind's `dark:` variant.
- Example:
Either approach works well, depending on your project's needs. The global CSS class method provides a centralized solution for multiple elements, while the Tailwind variant offers a quick way to adjust styles for individual components.
Let me know if you have any further questions!
@mardausdennis Thanks a lot! It really helped me.😊
Is this better than before?
Looks like you got it to work! 😀 Make sure to close the issue when everything is working fine.
Looks like you got it to work! 😀 Make sure to close the issue when everything is working fine. test
Summary
Currently, the buttons in the home page lack a hover effect, which could provide visual feedback to users. This issue is opened to propose the addition of a subtle shadow effect when the mouse hovers over buttons.
Expected Behavior
When a user hovers over a button, a smooth and subtle shadow effect should be applied, enhancing the visual feedback and improving the user experience.
Screenshots
And
Acceptance Criteria
Technical Details
You can use CSS for the same