Files
tolaria/apps/mobile/src/styles/noteCreateStyles.ts

22 lines
511 B
TypeScript
Raw Normal View History

2026-05-04 19:05:13 +02:00
import { StyleSheet } from 'react-native'
import { colors, spacing } from '../theme'
export const noteCreateStyles = StyleSheet.create({
composeButtonDisabled: {
opacity: 0.55,
},
createNoteError: {
position: 'absolute',
right: spacing.xl,
bottom: spacing.xl + 76,
maxWidth: 220,
borderRadius: 14,
paddingHorizontal: spacing.md,
paddingVertical: spacing.sm,
color: colors.textSoft,
backgroundColor: colors.chipRed,
fontSize: 13,
fontWeight: '600',
},
})