summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app/components/graph/graph.tsx1
-rw-r--r--app/components/tweaks/tweaks.tsx4
2 files changed, 4 insertions, 1 deletions
diff --git a/app/components/graph/graph.tsx b/app/components/graph/graph.tsx
index 72b9eea..930233b 100644
--- a/app/components/graph/graph.tsx
+++ b/app/components/graph/graph.tsx
@@ -216,6 +216,7 @@ export const Graph = observer(function Graph(props: GraphProps): JSX.Element {
linkOpacity={physics.linkOpacity}
nodeRelSize={physics.nodeRel}
linkDirectionalParticleWidth={physics.particleWidth}
+ backgroundColor="#1d1d1d"
/>
)}
</View>
diff --git a/app/components/tweaks/tweaks.tsx b/app/components/tweaks/tweaks.tsx
index 6c207e9..cfe658c 100644
--- a/app/components/tweaks/tweaks.tsx
+++ b/app/components/tweaks/tweaks.tsx
@@ -254,7 +254,7 @@ export const Tweaks = observer(function Tweaks(props: TweaksProps): JSX.Element
const styles = StyleSheet.create({
container: {
flex: 1,
- backgroundColor: '#111111',
+ backgroundColor: 'rgb(20,20,20)',
position: "absolute",
zIndex: 100,
left: 50,
@@ -263,6 +263,7 @@ const styles = StyleSheet.create({
borderRadius: 5,
borderStyle: "solid",
maxHeight: "70%",
+ paddingBottom: 20,
},
title: {
textAlign: 'left',
@@ -285,6 +286,7 @@ const styles = StyleSheet.create({
},
content: {
padding: 20,
+ paddingLeft: 60,
backgroundColor: '#000000',
},
active: {