mirror of
https://github.com/anultravioletaurora/Jellify.git
synced 2026-01-01 11:20:15 -06:00
23 lines
497 B
TypeScript
23 lines
497 B
TypeScript
import { StyleSheet } from "react-native";
|
|
|
|
export const jellifyStyles = StyleSheet.create({
|
|
container: {
|
|
flex: 1,
|
|
justifyContent: 'center',
|
|
marginHorizontal: 16,
|
|
},
|
|
title: {
|
|
textAlign: 'center',
|
|
marginVertical: 8,
|
|
},
|
|
fixToText: {
|
|
flexDirection: 'row',
|
|
justifyContent: 'space-between',
|
|
},
|
|
separator: {
|
|
marginVertical: 8,
|
|
borderBottomColor: '#737373',
|
|
borderBottomWidth: StyleSheet.hairlineWidth,
|
|
},
|
|
});
|