Skip to content
Merged
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
6 changes: 6 additions & 0 deletions frontend/app/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ export const Footer = () => {

return (
<div className="flex flex-col pb-6 items-center justify-around space-x-5">
<div className="flex w-full h-1">
<div className="flex w-1/4 bg-wm-pink"></div>
<div className="flex w-1/4 bg-wm-orange"></div>
<div className="flex w-1/4 bg-wm-teal"></div>
<div className="flex w-1/4 bg-wm-purple"></div>
</div>
<span className="text-sm mt-2">
Copyright© {displayYear} Interledger Foundation.
</span>
Expand Down
2 changes: 1 addition & 1 deletion frontend/app/components/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { useNavigate } from '@remix-run/react'
export const Header = () => {
const navigate = useNavigate()
return (
<div className="flex py-6 items-center justify-around space-x-5">
<div className="flex py-6 items-center justify-around space-x-5 bg-none bg-white border-b-4 border-b-wm-green-shade">
<div className="flex w-full">
<img
className="ml-6 cursor-pointer"
Expand Down
2 changes: 1 addition & 1 deletion frontend/app/components/TypeCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export const TypeCard = ({
bgColor
}: TypeCardProps) => {
return (
<div className="flex flex-col shrink-0 bg-white rounded-lg w-80 p-6">
<div className="flex flex-col shrink-0 bg-white rounded-lg w-80 p-6 border border-wm-green-shade">
<div className={cx('flex py-6 rounded-lg bg-gradient-to-r', bgColor)}>
<img
className="max-h-24 mx-auto"
Expand Down
4 changes: 2 additions & 2 deletions frontend/app/root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ export default function App() {
<Links />
</head>
<body className="h-screen">
<main className="h-screen flex flex-col justify-between">
<div className="flex flex-col">
<main className="h-auto min-h-full flex flex-col justify-between">
<div className="h-full flex flex-col bg-[url(/images/bg-tile.svg)] bg-[auto_25em]">
<Header />
<Outlet />
</div>
Expand Down
18 changes: 5 additions & 13 deletions frontend/app/routes/_index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,11 @@ export const meta: MetaFunction = () => {

export default function Index() {
return (
<div>
<div className="bg-gradient-to-r from-wm-green to-wm-green-fade border-t-4 border-t-wm-green-shade p-14">
<div className="flex flex-wrap justify-center gap-6 max-w-prosex p-4 mx-auto">
{availableTools.map((tool) => (
<TypeCard key={tool.link} {...tool} />
))}
</div>
</div>
<div className="flex w-full h-1">
<div className="flex w-1/4 bg-wm-pink"></div>
<div className="flex w-1/4 bg-wm-orange"></div>
<div className="flex w-1/4 bg-wm-teal"></div>
<div className="flex w-1/4 bg-wm-purple"></div>
<div className="h-full p-14">
<div className="flex flex-wrap justify-center gap-6 max-w-prosex p-4 mx-auto">
{availableTools.map((tool) => (
<TypeCard key={tool.link} {...tool} />
))}
</div>
</div>
)
Expand Down
1 change: 1 addition & 0 deletions frontend/public/images/bg-tile.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.