Skip to content

Commit

Permalink
admin-portal/src/components/C: poered by
Browse files Browse the repository at this point in the history
  • Loading branch information
remorses committed Aug 13, 2023
1 parent 9bb1ac8 commit 97c86bd
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 6 deletions.
8 changes: 7 additions & 1 deletion admin-portal/src/components/ChooseProvider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,13 @@ export function ChooseProvider() {
const disabled = 'inactive' in value && value.inactive
if (disabled) {
return (
<Tooltip showArrow key={key} content='Coming Soon'>
<Tooltip
delay={400}
closeDelay={0}
showArrow
key={key}
content='Coming Soon'
>
<div className=''>
<RadioCard
isDisabled={disabled}
Expand Down
13 changes: 8 additions & 5 deletions admin-portal/src/components/Container.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export function Container({ children }) {
color = color.replace('hsl(', '').replace(')', '').replace(/,/g, '')

return (
<div className='flex light gap-12 flex-col justify-center h-full w-full items-stretch max-w-[1300px] mx-auto px-16'>
<div className='flex min-h-screen light gap-12 flex-col justify-start h-full w-full items-stretch max-w-[1300px] mx-auto px-16'>
{color && (
<style>
{`
Expand All @@ -27,18 +27,21 @@ export function Container({ children }) {
<div className=''>Link</div> */}
</div>
{children}
<PoweredBy />

<div className='pt-24'></div>
<div className=' grow'></div>
<PoweredBy />
<div className=''></div>
</div>
)
}

export function PoweredBy() {
return (
<div className='flex text-sm gap-1'>
<div className='flex self-center opacity-80 tracking-wide text-[12px] gap-1'>
Powered by
<span className='font-bold'>Akarso</span>
<a href='https://akarso.co' target='_blank' className='font-bold'>
Akarso
</a>
</div>
)
}

0 comments on commit 97c86bd

Please sign in to comment.