website refactor
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
'use client';
|
||||
|
||||
import { Grid } from '@/ui/primitives/Grid';
|
||||
import { Grid } from '@/ui/Grid';
|
||||
import React from 'react';
|
||||
|
||||
interface AuthProviderButtonsProps {
|
||||
@@ -14,8 +14,10 @@ interface AuthProviderButtonsProps {
|
||||
*/
|
||||
export function AuthProviderButtons({ children }: AuthProviderButtonsProps) {
|
||||
return (
|
||||
<Grid cols={1} gap={3} mb={6}>
|
||||
{children}
|
||||
</Grid>
|
||||
<div style={{ marginBottom: '1.5rem' }}>
|
||||
<Grid cols={1} gap={3}>
|
||||
{children}
|
||||
</Grid>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user