"frontend/src/forms/QDropdown.tsx" did not exist on "6702d09080f45fc652b5948f7edb8db166cb9f4b"
Commit d9047c9a authored by Lee Soobeom's avatar Lee Soobeom
Browse files

Merge remote-tracking branch 'origin/sm18' into develop

parents 17f5b225 d517c08f
......@@ -12,7 +12,7 @@ export default function Header() {
const newvalue = e.target.value;
setSearch(newvalue);
};
// bg-gradient-to-t from-sky-200
return (
<div className="flex flex-col ">
<div className="flex flex-col md:px-56 z-10 ">
......
......@@ -7,8 +7,9 @@ type CityProps = {
export default function Citylist({ handleClick }: CityProps) {
const [active, setActive] = useState(0);
const onactive = "text-start px-5 py-2 underline whitespace-nowrap";
const offactive = "text-start px-5 py-2 whitespace-nowrap";
const onactive =
"text-start px-5 py-2 whitespace-nowrap w-full border-b-4 md:border-b-0 md:border-r-4 border-sky-500";
const offactive = "text-start px-5 py-2 whitespace-nowrap w-full ";
const clickActive = (a: number) => {
setActive(a);
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment