Skip to content

Commit 923d50e

Browse files
committed
Spacing issue fix
1 parent 1cd858b commit 923d50e

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

src/components/GitSequencer.css

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@
258258
font-size: inherit;
259259
outline: none;
260260
caret-color: transparent;
261-
padding: 0.25rem 0.5rem;
261+
padding: 0.25rem 0.5rem 0.25rem 0;
262262
}
263263

264264
.command-line input::placeholder {
@@ -593,6 +593,7 @@
593593
height: 8px;
594594
}
595595
}
596+
596597
/* Mixer Controls */
597598
.mixer-controls {
598599
display: flex;
@@ -644,4 +645,4 @@
644645

645646
.mixer-track input[type="range"]::-webkit-slider-thumb:hover {
646647
transform: scale(1.2);
647-
}
648+
}

src/components/GitSequencer.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -713,7 +713,7 @@ const GitSequencer = () => {
713713
{showCursor && (
714714
<span
715715
className="terminal-cursor"
716-
style={{ left: `calc(0.5rem + ${getCursorOffset()}px)` }}
716+
style={{ left: `${getCursorOffset()}px` }}
717717
/>
718718
)}
719719
<input

0 commit comments

Comments
 (0)