diff --git a/src/asset/css/BookLocation.css b/src/asset/css/BookLocation.css index b7510d8a..272f6f5a 100644 --- a/src/asset/css/BookLocation.css +++ b/src/asset/css/BookLocation.css @@ -9,18 +9,18 @@ .book-location__shelves { display: flex; - gap: 2rem; + /* gap: 2rem; */ align-items: flex-end; - overflow-x: auto; - overflow-y: hidden; + justify-content: center; + /* overflow-x: auto; + overflow-y: hidden; */ height: 90%; padding: 3rem; } .book-location__shelves > div { min-width: 20rem; - border: 1px solid #c0c0c0; - margin-left: 1rem; + /* margin-left: 1rem; */ display: flex; font-weight: bold; } @@ -33,9 +33,14 @@ height: 40%; } +.callSignPath { + opacity: 0.3; +} + .highlight_svg { - stroke: #ffcc00; /* Example highlight color */ - stroke-width: 3; + /* stroke: #5f3f36; + stroke-linecap: round; */ + opacity: 1; } .book-location__map { diff --git a/src/component/book/location/BookShelfSVG.tsx b/src/component/book/location/BookShelfSVG.tsx index deb165d4..02cb1cea 100644 --- a/src/component/book/location/BookShelfSVG.tsx +++ b/src/component/book/location/BookShelfSVG.tsx @@ -6,45 +6,46 @@ type BookShelfSVGProps = { const ShelfOne = ({ highlight }: { highlight: string }) => { return ( - + + - - - - ); @@ -52,45 +53,46 @@ const ShelfOne = ({ highlight }: { highlight: string }) => { const ShelfTwo = ({ highlight }: { highlight: string }) => { return ( - + - - - ); @@ -98,35 +100,37 @@ const ShelfTwo = ({ highlight }: { highlight: string }) => { const ShelfThree = ({ highlight }: { highlight: string }) => { return ( - + - - - + ); @@ -134,53 +138,62 @@ const ShelfThree = ({ highlight }: { highlight: string }) => { const ShelfFour = () => { return ( - - + + ); }; const ShelfFive = ({ highlight }: { highlight: string }) => { return ( - - - + + - );