Skip to content

Commit

Permalink
Merge pull request #2304 from 11WALTER11/master
Browse files Browse the repository at this point in the history
feat: settings screen
  • Loading branch information
im-adithya authored Apr 5, 2023
2 parents ea73fdd + 6ac26d9 commit 192b3a0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/app/components/Container.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ function Container({

return (
<div
className={`container mx-auto px-4 ${getMaxWidthClass(maxWidth)} ${
className={`container mx-auto px-4 mb-5 ${getMaxWidthClass(maxWidth)} ${
justifyBetween
? "h-full flex flex-col justify-between overflow-y-auto no-scrollbar"
: ""
Expand Down
9 changes: 6 additions & 3 deletions src/app/screens/Discover/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,12 @@ function Discover() {
{t("discover.description")}
</p>

<div className="mb-12">
{websites.map(({ title, items }) => (
<div className="mb-10" key={title}>
<div>
{websites.map(({ title, items }, index) => (
<div
className={index !== websites.length - 1 ? "mb-10" : ""}
key={title}
>
<h4 className="mb-2 text-xl font-bold dark:text-white">
{t(`discover.list.${title as "trading"}`)}
</h4>
Expand Down

0 comments on commit 192b3a0

Please sign in to comment.