Skip to content

Commit

Permalink
Merge pull request #26 from ReflectionsProjections/eventsSVG
Browse files Browse the repository at this point in the history
fixed SVGs in events page
  • Loading branch information
aryan-bhardwaj authored Aug 23, 2024
2 parents 7e5c619 + fb4a9c2 commit b0229be
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion components/EventCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ const styles = StyleSheet.create({
position: "absolute",
marginLeft: 15,
marginTop: 30,
maxWidth: Dimensions.get("window").width * 0.8,
maxWidth: 320,
},
name: {
fontSize: 20,
Expand Down
6 changes: 5 additions & 1 deletion components/EventModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,19 +58,23 @@ const styles = StyleSheet.create({
},
eventDetails: {
position: "absolute",
marginLeft: 25,
marginLeft: 20,
width: 300,
marginTop: 50,
// backgroundColor: 'green'
},
name: {
fontSize: 20,
// marginLeft: 20,
paddingRight: 25,
color: "black",
fontFamily: "Kufam_700Bold",
paddingRight: 25
},
info: {
flexDirection: "row",
// justifyContent: "space-evenly",

},
infoItem: {
flexDirection: "row",
Expand Down
2 changes: 1 addition & 1 deletion navigation/DayEvent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const DayEvent = ({ day, events }) => (
key={event.id}
name={event.name}
time={formatTime(event.startTime)}
location={"location"}
location={event.location}
description={event.description}
points={event.points}
/>
Expand Down
3 changes: 0 additions & 3 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -10893,9 +10893,6 @@ __metadata:
languageName: node
linkType: hard

"react-native-pager-view@npm:6.3.0":
version: 6.3.0
resolution: "react-native-pager-view@npm:6.3.0"
"react-native-pager-view@npm:6.3.0":
version: 6.3.0
resolution: "react-native-pager-view@npm:6.3.0"
Expand Down

0 comments on commit b0229be

Please sign in to comment.