@roochnetwork/rooch-sdk-kit
Version:
Rooch SDK Kit
78 lines (66 loc) • 1.49 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 whatContainer = style({
display: 'flex',
flexDirection: 'column',
alignItems: 'center',
})
export const whatContent = style({
display: 'flex',
flexDirection: 'column',
justifyContent: 'center',
alignItems: 'center',
width: '100%',
flexGrow: 1,
gap: 20,
padding: 20,
})
export const whatMoreContent = style({
display: 'flex',
width: '100%',
alignItems: 'center',
flexDirection: 'column',
})
export const createSessionContainer = style({
display: 'flex',
width: '100%',
alignItems: 'center',
flexDirection: 'column',
})
export const createSessionContent = style({
display: 'flex',
marginTop: 20,
flexDirection: 'column',
})
export const createSessionScopeContent = style({
display: 'flex',
flexDirection: 'column',
flexGrow: 1,
marginTop: 20,
padding: 2,
})
export const createSessionStatus = style({
display: 'flex',
flexDirection: 'column',
justifyContent: 'center',
alignItems: 'center',
height: '100%',
marginTop: 4,
})
export const actionButtonContainer = style({
position: 'absolute',
bottom: 20,
right: 20,
})
export const moreInfo = style({
color: themeVars.colors.bodyDanger,
})
export const sessionItemContent = style({
display: 'flex',
flexDirection: 'row',
flexGrow: 1,
marginTop: 2,
padding: 2,
})