diff --git a/components/Card/Card.styles.js b/components/Card/Card.styles.js index 6a33dd4..a331d08 100644 --- a/components/Card/Card.styles.js +++ b/components/Card/Card.styles.js @@ -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", + }, +});