UNPKG

@crossed/ui

Version:

A universal & performant styling library for React Native, Next.js & React

36 lines (33 loc) 797 B
/** * Copyright (c) Paymium. * * This source code is licensed under the MIT license found in the * LICENSE file in the root of this projects source tree. */ import { createStyles } from '@crossed/styled'; export const baseStyle = createStyles(() => ({ view: { base: { borderStyle: 'solid', borderWidth: 0, alignItems: 'stretch', backgroundColor: 'rgba(0, 0, 0, 0)', boxSizing: 'border-box', display: 'flex', flexBasis: 'auto', flexDirection: 'column', flexShrink: 0, listStyle: 'none', margin: 0, minHeight: 0, minWidth: 0, paddingTop: 0, paddingBottom: 0, paddingRight: 0, paddingLeft: 0, position: 'relative', textDecoration: 'none', zIndex: 0, }, }, }));