diff --git a/components/tracks/Track.tsx b/components/tracks/Track.tsx
index 9f0b7db..20318f8 100644
--- a/components/tracks/Track.tsx
+++ b/components/tracks/Track.tsx
@@ -262,44 +262,44 @@ export function Track({
{!track.collapsed && (
<>
{/* Volume */}
-
-
-
-
- {Math.round(track.volume * 100)}%
-
+
+
+
+
-
+
+ {Math.round(track.volume * 100)}%
+
{/* Pan */}
-
-
-
-
- {track.pan === 0
- ? 'C'
- : track.pan < 0
- ? `L${Math.round(Math.abs(track.pan) * 100)}`
- : `R${Math.round(track.pan * 100)}`}
-
+
+
+
+
-
+
+ {track.pan === 0
+ ? 'C'
+ : track.pan < 0
+ ? `L${Math.abs(Math.round(track.pan * 100))}`
+ : `R${Math.round(track.pan * 100)}`}
+
>
)}