Skip to content

Commit

Permalink
Tela de Criação de Card
Browse files Browse the repository at this point in the history
  • Loading branch information
AuroraDark committed Apr 20, 2022
1 parent 36f1a18 commit ac54546
Showing 1 changed file with 37 additions and 50 deletions.
87 changes: 37 additions & 50 deletions components/Card/Card.styles.js
Original file line number Diff line number Diff line change
@@ -1,56 +1,43 @@
import { StyleSheet } from 'react-native';
import { vw, vh, vmin, vmax } from 'react-native-expo-viewport-units';

import { StyleSheet } from "react-native";
import { vw, vh, vmin, vmax } from "react-native-expo-viewport-units";

export const styles = StyleSheet.create({
cardBody: {
flex: 1,
width: vw(80),
height: vh(65),
borderRadius: 40,
padding: 20,
marginLeft: vw(3),
marginRight: vw(3),
display: 'flex',
flexDirection: 'column',
alignItems: 'center'
},

scrollView: {
marginTop: '5%',
height: '82%',
},
cardBody: {
flex: 1,
width: vw(80),
height: vh(65),
borderRadius: 40,
padding: 20,
marginLeft: vw(3),
marginRight: vw(3),
display: "flex",
flexDirection: "column",
alignItems: "center",
},

cardTitulo: {
marginTop: 40,
color: '#f2f2f2',
textAlign: 'center',
fontFamily: 'Epilogue_500Medium',
fontSize: 30,
},
scrollView: {
marginTop: "5%",
height: "82%",
},

dica: {
marginTop: 20,
textAlign: 'center',
color: '#f2f2f2',
fontFamily: 'Epilogue_500Medium',
fontSize: 18,
},
cardTitulo: {
marginTop: 40,
color: "#f2f2f2",
textAlign: "center",
fontFamily: "Epilogue_500Medium",
fontSize: 30,
},

lampIcon: {
position: 'absolute',
bottom: 30,
left:30,
},
dica: {
marginTop: 20,
textAlign: "center",
color: "#f2f2f2",
fontFamily: "Epilogue_500Medium",
fontSize: 18,
},

starIcon: {
position: 'absolute',
bottom: 30,
right:30,
},

elevation: {
elevation: 15,
shadowColor: '#121212',
},
});
elevation: {
elevation: 15,
shadowColor: "#121212",
},
});

0 comments on commit ac54546

Please sign in to comment.