8000 Small UI tweaks by Ziflie · Pull Request #518 · elizaOS/auto.fun · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Small UI tweaks #518

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1727,7 +1727,7 @@ export default function CommunityTab() {
: "Enter a description for your video (optional)"
: "Optional: describe the musical style (e.g., 'upbeat electronic with retro synths')"
}
className="w-full border-b border-b-[#03FF24] text-white bg-transparent focus:outline-none focus:border-b-white px-2 py-2 text-base resize-none leading-normal" // Use py-2, leading-normal for textarea
className="w-full min-h-[150px] resize-none border-b border-b-[#03FF24] text-white bg-transparent focus:outline-none focus:border-b-white px-2 py-2 text-base leading-normal" // Use py-2, leading-normal for textarea
/>
</div>

Expand Down
4 changes: 2 additions & 2 deletions packages/client/src/pages/token.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -507,7 +507,7 @@ export default function Page() {
<div className="h-2 w-full bg-autofun-text-highlight z-10"></div>

{/* Tabs Header with Title and Right-aligned Tabs - removed border-b as it's on the parent */}
<div className="flex items-center justify-between pr-2">
<div className="flex flex-col sm:flex-row sm:items-center sm:justify-between pr-2 space-y-2 sm:space-y-0">
<div className="flex">
<button
className={`px-4 py-3 text-autofun-text-primary font-medium cursor-pointer transition-colors duration-200 ${
Expand Down Expand Up @@ -601,7 +601,7 @@ export default function Page() {
{activeTab === "chart" || activeTab === "agents" ? null : (
<div
id="media-selector-container"
className="flex space-x-2 items-center"
className="mt-2 ml-2 flex space-x-2 items-center"
>
{/* Media type buttons will be moved here by the generation component */}
</div>
Expand Down
Loading
0