Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
D0m1nos committed Oct 31, 2024
1 parent a37ea3e commit ec63681
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const PlaylistList: Component = () => {
<label
class={twMerge(
"absolute top-1/2 -translate-x-8 -translate-y-[22px] transform text-xl text-text",
showCreateBox() && "-translate-y-[126px]",
showCreateBox() && "-translate-y-[116px]",
)}
for="search_input"
>
Expand All @@ -48,7 +48,7 @@ const PlaylistList: Component = () => {
setShowCreateBox(!showCreateBox());
}}
class="rounded-lg text-xl"
variant={showCreateBox() ? "accent" : "ghost"}
variant={showCreateBox() ? "primary" : "ghost"}
size={"icon"}
>
<PlusIcon />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ const PlaylistSongList: Component<PlaylistSongListProps> = (props) => {
<h3 class="text-xl">{props.playlistName}</h3>
</div>
<Button
variant={editMode() ? "accent" : "ghost"}
variant={editMode() ? "primary" : "ghost"}
size={"icon"}
class="rounded-lg"
onClick={() => {
Expand Down

0 comments on commit ec63681

Please sign in to comment.