laconic-wallet/styles/stylesheet.js
shreerang6921 3d40de966d
Generate wallet and sign message (#4)
* Store mnemonic and private key seperately

* Change variable names

* Refactor code in seperate components

* Display wallet details

* Remove unnecessary imports

* Make review changes

* Add method to reset wallet

* Make component self closing

* separate imports

---------

Co-authored-by: Adw8 <adwait@deepstacksoft.com>
2024-02-08 18:42:30 +05:30

33 lines
557 B
JavaScript

import { StyleSheet } from 'react-native';
const styles = StyleSheet.create({
headerContainer: {
padding: 15,
alignItems: 'center',
justifyContent: 'center',
},
headerText: {
color: 'black',
fontSize: 26,
fontWeight: 'bold',
},
sectionContainer: {
marginTop: 32,
paddingHorizontal: 24,
},
sectionTitle: {
fontSize: 22,
fontWeight: '600',
},
sectionDescription: {
marginTop: 8,
fontSize: 18,
fontWeight: '400',
},
highlight: {
fontWeight: '700',
},
});
export default styles;