react-search-bar-ks
Version:
A modern, animated voice-enabled search component built with React, TypeScript, and Framer Motion.
29 lines (24 loc) • 595 B
CSS
@tailwind base;
@tailwind components;
@tailwind utilities;
/* Base styles */
body {
margin: 0;
padding: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}
* {
box-sizing: border-box;
}
/* Search bar specific styles */
.search-container {
background: rgba(255, 255, 255, 0.98);
border-radius: 12px;
}
/* Fix autofill background */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
-webkit-box-shadow: 0 0 0px 1000px white inset;
transition: background-color 5000s ease-in-out 0s;
}