Miscellanous fixes
This commit is contained in:
parent
2f0634dc03
commit
946b73d215
4 changed files with 4 additions and 3 deletions
|
@ -287,6 +287,7 @@ export const SynchronizedLyrics = ({
|
|||
{lyrics.map(([, text], idx) => (
|
||||
<LyricLine
|
||||
key={idx}
|
||||
className="lyric-line synchronized"
|
||||
id={`lyric-${idx}`}
|
||||
text={text}
|
||||
/>
|
||||
|
|
|
@ -45,7 +45,7 @@ export const UnsynchronizedLyrics = ({
|
|||
{lines.map((text, idx) => (
|
||||
<LyricLine
|
||||
key={idx}
|
||||
className="unsynchronized active"
|
||||
className="lyric-line"
|
||||
id={`lyric-${idx}`}
|
||||
text={text}
|
||||
/>
|
||||
|
|
|
@ -121,7 +121,7 @@ export const CommandPalette = ({ modalProps }: CommandPaletteProps) => {
|
|||
>
|
||||
<TextInput
|
||||
ref={searchInputRef}
|
||||
data-autoFocus
|
||||
data-autofocus
|
||||
icon={<RiSearchLine />}
|
||||
rightSection={
|
||||
<ActionIcon
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
--generic-border-color: rgba(50, 50, 50, 0.3);
|
||||
|
||||
--main-bg: rgb(18, 18, 18);
|
||||
--main-fg: rgb(245, 245, 245);
|
||||
--main-fg: rgb(225, 225, 225);
|
||||
--main-fg-secondary: rgb(150, 150, 150);
|
||||
|
||||
--window-bar-bg: rgb(24, 24, 24);
|
||||
|
|
Reference in a new issue