about summary refs log tree commit diff
path: root/src/view/screens/Log.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/view/screens/Log.tsx')
-rw-r--r--src/view/screens/Log.tsx10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/view/screens/Log.tsx b/src/view/screens/Log.tsx
index 56337435f..86c5e50e2 100644
--- a/src/view/screens/Log.tsx
+++ b/src/view/screens/Log.tsx
@@ -65,10 +65,12 @@ export const Log = observer(function Log({navIdx, visible}: ScreenParams) {
                   </Text>
                 </TouchableOpacity>
                 {expanded.includes(entry.id) ? (
-                  <View style={[pal.btn, styles.details]}>
-                    <Text type="body1" style={pal.text}>
-                      {entry.details}
-                    </Text>
+                  <View style={[pal.view, s.pl10, s.pr10, s.pb10]}>
+                    <View style={[pal.btn, styles.details]}>
+                      <Text type="mono1" style={pal.text}>
+                        {entry.details}
+                      </Text>
+                    </View>
                   </View>
                 ) : undefined}
               </View>