Skip to content

Commit 4ce6852

Browse files
committed
fix(web): typo in pages
1 parent 8a8cbf5 commit 4ce6852

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

clients_config/aptosmingos.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ AUCTION_INSTANCE_ADDRESS=0x98937acca8bc2c164dff158156ab06f9c99bbbb050129d7a514a3
2020
AUCTION_BACKGROUND_COLOR='#FF00FF'
2121
AUCTION_BACKGROUND_IMAGE='url(/aptomingos-background.png)'
2222
AUCTION_BACKGROUND_COVER='#FFFFFF23'
23-
AUCTION_BACKGROUND_BLUR='2px'
23+
AUCTION_BACKGROUND_BLUR='0px'
2424

2525
AUCTION_GENERAL_TITLE=Auctions
2626
AUCTION_GENERAL_FAVICON=/aptomingos-favicon.ico

web/src/components/PageContainer/PageContainer.component.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { PropsWithChildren } from "react";
22

33
const PageContainer = (props: PropsWithChildren) => {
44
return (
5-
<div className="flex pt-7.5 pb-10 box-content flex-col w-full overflow-y-hidden mx-auto max-w-[1280px]">
5+
<div className="bg-cover bg-scroll flex pt-7.5 pb-10 box-content flex-col w-full overflow-y-hidden mx-auto max-w-[1280px]">
66
{props.children}
77
</div>
88
);

web/src/pages/Auction/Auction.component.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ function AuctionComponent(props: AuctionProps) {
335335
<div className="flex gap-1 items-center w-[95%] max-w-[413px] mx-auto mt-[1.1rem] md:ml-6 md:px-2 xl:px-0 xl:mx-[-5px] mb-[.4rem]">
336336
<ChevronLeftIcon className="w-[15px] h-5" />
337337
<a href="/" className="text-black font-semibold text-sm tracking-tight">
338-
Back to all acutions
338+
Back to all auctions
339339
</a>
340340
</div>
341341
<section className="Auction flex flex-col mt-10 items-center m-auto w-[95%] md:grid grid-rows-3 grid-flow-col md:gap-4 xl:gap-20 md:items-start mx-auto md:mt-6 xl:w-full">

web/tailwind.config.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,11 @@ module.exports = {
3838
space: useEnv('AUCTION_COLOR_GRADIENT'),
3939
'gd-button': useEnv('AUCTION_COLOR_BUTTON_GRADIENT')
4040
},
41+
backgroundSize: {
42+
'auto': 'auto',
43+
'cover': 'cover',
44+
'contain': 'contain',
45+
},
4146
backdropBlur: {
4247
cover: useEnv('AUCTION_BACKGROUND_BLUR'),
4348
},

0 commit comments

Comments
 (0)