File tree Expand file tree Collapse file tree 4 files changed +8
-3
lines changed
Expand file tree Collapse file tree 4 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ AUCTION_INSTANCE_ADDRESS=0x98937acca8bc2c164dff158156ab06f9c99bbbb050129d7a514a3
2020AUCTION_BACKGROUND_COLOR = ' #FF00FF'
2121AUCTION_BACKGROUND_IMAGE = ' url(/aptomingos-background.png)'
2222AUCTION_BACKGROUND_COVER = ' #FFFFFF23'
23- AUCTION_BACKGROUND_BLUR = ' 2px '
23+ AUCTION_BACKGROUND_BLUR = ' 0px '
2424
2525AUCTION_GENERAL_TITLE = Auctions
2626AUCTION_GENERAL_FAVICON = /aptomingos-favicon.ico
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import { PropsWithChildren } from "react";
22
33const 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 ) ;
Original file line number Diff line number Diff 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" >
Original file line number Diff line number Diff 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 } ,
You can’t perform that action at this time.
0 commit comments