Skip to content

Commit

Permalink
Update CSS imports and remove visibility from paths and position that…
Browse files Browse the repository at this point in the history
… were used in developement
  • Loading branch information
KnotzerIO committed Mar 27, 2024
1 parent c05a5e4 commit da5cdf2
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@ import { createContext } from "react";
import { Route, Routes } from "react-router-dom";
import { ToastContainer } from "react-toastify";
import "react-toastify/dist/ReactToastify.css";
import "./App.css";

import "./styles/App.css";
import Map from "./pages/Map";
import { AdminContextType } from "./utils/types";

Expand Down
2 changes: 1 addition & 1 deletion src/components/IndoorMapWrapper.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ function IndoorMapWrapper() {
<Positions
positionRadius={positionRadius}
handlePositionClick={handlePositionClick}
className={isEditMode ? "opacity-100" : "opacity-100"}
className={isEditMode ? "opacity-100" : "opacity-0"}
navigation={navigation}
/>
</MapBackground>
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/styles/map.css
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
.path {
stroke: var(--path-color);
stroke-width: 1;
opacity: 1;
opacity: 0;
border-radius: 0px;
}

Expand Down

0 comments on commit da5cdf2

Please sign in to comment.