castopod/app/Resources/styles/dropdown.css
Yassine Doghri 37c54d2477 feat: build hashed static files to renew browser cache
- replace rollup config with vitejs
- use vite dev server during development to take advantage of
hot module replacement (HMR)
- add vite service using Vite library to load css and js assets
- update package.json scripts and remove unnecessary
dependencies
- update scripts/bundle-prepare.sh

closes #107
2021-07-12 17:47:56 +00:00

9 lines
176 B
CSS

@layer base {
[data-dropdown="menu"] {
@apply z-50;
}
[data-dropdown="menu"]:not([data-show]) {
@apply absolute top-0 left-0 invisible pointer-events-none;
}
}