@roochnetwork/rooch-sdk-kit
Version:
Rooch SDK Kit
68 lines (56 loc) • 1.22 kB
text/typescript
// Copyright (c) RoochNetwork
// SPDX-License-Identifier: Apache-2.0
import { style } from '@vanilla-extract/css'
import { themeVars } from '../../../themes/themeContract.js'
export const container = style({
display: 'flex',
width: '100%',
alignItems: 'center',
flexDirection: 'column',
})
export const walletIcon = style({
objectFit: 'cover',
width: 72,
height: 72,
borderRadius: themeVars.radii.large,
})
export const title = style({
marginTop: 12,
})
export const content = style({
display: 'flex',
marginTop: 20,
flexDirection: 'column',
})
export const sessionItemContent = style({
display: 'flex',
flexDirection: 'row',
flexGrow: 1,
marginTop: 2,
padding: 2,
})
export const scopeContent = style({
display: 'flex',
flexDirection: 'column',
flexGrow: 1,
marginTop: 20,
padding: 2,
})
export const moreContent = style({
display: 'flex',
width: '100%',
alignItems: 'center',
flexDirection: 'column',
marginTop: 10,
})
export const moreInfo = style({
color: themeVars.colors.bodyDanger,
})
export const removeButtonContainer = style({
position: 'absolute',
bottom: 20,
right: 20,
})
export const removeBtn = style({
boxShadow: 'none',
})