Skip to content

Small UI inconsistencies #490

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 1 commit into
base: main
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 @@ -16,7 +16,7 @@
+ <div className='relative pt-32 w-full'>
+ <TopGradient />
+ <BottomGradient />
+ <div className='flex flex-col lg:flex-row max-w-7xl mx-auto'>
+ <div className='flex flex-col lg:flex-row max-w-7xl mx-auto overflow-x-hidden'>
+ <div className='py-24 sm:py-32'>
+ <div className='max-w-8xl px-6 lg:px-8'>
+ <div className='lg:mb-18 mx-auto max-w-3xl text-center md:text-left'>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@
+ {
+ name: 'Jonathan Cocharan',
+ role: 'Entrepreneur',
+ avatarSrc: 'https://pbs.twimg.com/profile_images/1910056203863883776/jtfVWaEG_400x400.jpg',
+ avatarSrc: 'https://pbs.twimg.com/profile_images/1950172296376639488/sZ0JIqfR_400x400.jpg',
+ socialUrl: 'https://twitter.com/JonathanCochran',
+ quote:
+ 'In just 6 nights... my SaaS app is live 🎉! Huge thanks to the amazing @wasplang community 🙌 for their guidance along the way. These tools are incredibly efficient 🤯!',
Expand Down
2 changes: 1 addition & 1 deletion template/app/src/client/Main.css
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@
--muted-foreground: 0 0% 63.9%;
--accent: 31 57% 93%;
--accent-foreground: 210 100% 13%;
--destructive: 0 62.8% 30.6%;
--destructive: 0 62.8% 63%;
--destructive-foreground: 0 0% 98%;
--success: 141 71% 48%;
--success-foreground: 0 0% 98%;
Expand Down
2 changes: 1 addition & 1 deletion template/app/src/demo-ai-app/DemoAppPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ function Schedule({ schedule }: { schedule: GeneratedSchedule }) {

function TaskCard({ task, taskItems }: { task: ScheduleTask; taskItems: TaskItem[] }) {
const taskPriorityToColorMap: Record<TaskPriority, string> = {
high: 'bg-destructive/20 border-destructive/40 text-red-500',
high: 'bg-destructive/10 border-destructive/20 text-red-500',
medium: 'bg-warning/10 border-warning/20 text-warning',
low: 'bg-success/10 border-success/20 text-success',
};
Expand Down
Loading