UNPKG

@mysten/dapp-kit

Version:

A collection of React hooks and components for interacting with the Sui blockchain and wallets.

20 lines (16 loc) 371 B
// Copyright (c) Mysten Labs, Inc. // SPDX-License-Identifier: Apache-2.0 import { style } from '@vanilla-extract/css'; export const container = style({ display: 'flex', flexDirection: 'column', alignItems: 'center', }); export const content = style({ display: 'flex', flexDirection: 'column', justifyContent: 'center', flexGrow: 1, gap: 20, padding: 40, });