{Object.keys(zonesData).map((zoneName, index) => (
= ({
}`}
onClick={() => {
console.log("zoneName: ", zoneName);
-
setSelectedZone({
zoneName,
activeSides: zonesData[zoneName].activeSides || [],
@@ -181,11 +170,11 @@ const DisplayZone: React.FC = ({
{/* Right Arrow */}
{showRightArrow && (
)}
);
};
-export default DisplayZone;
\ No newline at end of file
+export default DisplayZone;
diff --git a/app/src/components/ui/list/List.tsx b/app/src/components/ui/list/List.tsx
index bfb731e..54b710d 100644
--- a/app/src/components/ui/list/List.tsx
+++ b/app/src/components/ui/list/List.tsx
@@ -9,7 +9,6 @@ interface ListProps {
}
const List: React.FC
= ({ items = [], remove }) => {
- console.log("items: ", items);
return (
<>
{items.length > 0 ? (
diff --git a/app/src/styles/base/reset.scss b/app/src/styles/base/reset.scss
index b37f940..82d286e 100644
--- a/app/src/styles/base/reset.scss
+++ b/app/src/styles/base/reset.scss
@@ -1,7 +1,14 @@
* {
- margin: 0;
- padding: 0;
- box-sizing: border-box;
- user-select: none;
- font-size: var(--font-size-regular);
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ user-select: none;
+ font-size: var(--font-size-regular);
+}
+
+input[type="password"]::-ms-reveal, /* For Microsoft Edge */
+input[type="password"]::-ms-clear, /* For Edge clear button */
+input[type="password"]::-webkit-clear-button, /* For Chrome/Safari clear button */
+input[type="password"]::-webkit-inner-spin-button { /* Just in case */
+ display: none;
}
diff --git a/app/src/styles/pages/realTimeViz.scss b/app/src/styles/pages/realTimeViz.scss
index 00d54f7..5bae256 100644
--- a/app/src/styles/pages/realTimeViz.scss
+++ b/app/src/styles/pages/realTimeViz.scss
@@ -36,7 +36,7 @@
}
}
- .zoon-wrapper {
+ .zone-wrapper {
display: flex;
background-color: var(--background-color);
position: absolute;
@@ -55,11 +55,16 @@
}
.arrow {
- background-color: var(--accent-color);
+ background-color: var(--highlight-accent-color);
color: var(--background-color);
}
.zones-wrapper {
+ padding: 6px;
+ display: flex;
+ gap: 6px;
+ border-radius: #{$border-radius-medium};
+ overflow-x: auto;
&::-webkit-scrollbar {
display: none;
}
@@ -82,28 +87,10 @@
}
}
- .zoon-wrapper.bottom {
+ .zone-wrapper.bottom {
bottom: 210px;
}
- @media (max-width: 1024px) {
- width: 80%; // Increase width to take more space on smaller screens
- height: 500px; // Reduce height to fit smaller screens
- left: 50%; // Center horizontally
-
- .main-container {
- margin: 0 15px; // Reduce margin for better spacing
- }
-
- .zoon-wrapper {
- bottom: 5px; // Adjust position for smaller screens
-
- &.bottom {
- bottom: 150px; // Adjust for bottom placement
- }
- }
- }
-
.content-container {
display: flex;
height: 100vh;
@@ -118,7 +105,7 @@
margin: 0 30px;
transition: height 0.3s ease, margin 0.3s ease;
- .zoon-wrapper {
+ .zone-wrapper {
display: flex;
background-color: rgba(224, 223, 255, 0.5);
position: absolute;
@@ -309,7 +296,7 @@
}
.playingFlase {
- .zoon-wrapper.bottom {
+ .zone-wrapper.bottom {
bottom: 300px;
}
}
@@ -501,13 +488,10 @@
position: absolute;
top: 50%;
transform: translateY(-50%);
- background-color: rgba(0, 0, 0, 0.5);
- color: white;
border: none;
cursor: pointer;
- font-size: 20px;
- padding: 6px;
z-index: 10;
+ height: 100%;
}
.left-arrow {