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() { ...@@ -12,7 +12,7 @@ export default function Header() {
const newvalue = e.target.value; const newvalue = e.target.value;
setSearch(newvalue); setSearch(newvalue);
}; };
// bg-gradient-to-t from-sky-200
return ( return (
<div className="flex flex-col "> <div className="flex flex-col ">
<div className="flex flex-col md:px-56 z-10 "> <div className="flex flex-col md:px-56 z-10 ">
......
...@@ -7,8 +7,9 @@ type CityProps = { ...@@ -7,8 +7,9 @@ type CityProps = {
export default function Citylist({ handleClick }: CityProps) { export default function Citylist({ handleClick }: CityProps) {
const [active, setActive] = useState(0); const [active, setActive] = useState(0);
const onactive = "text-start px-5 py-2 underline whitespace-nowrap"; const onactive =
const offactive = "text-start px-5 py-2 whitespace-nowrap"; "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) => { const clickActive = (a: number) => {
setActive(a); 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