Browse Source

Small game UI improvements

Arnaud Vergnet 3 years ago
parent
commit
de41a57930

+ 1
- 0
src/screens/Game/components/GridComponent.js View File

@@ -46,6 +46,7 @@ class GridComponent extends React.Component<Props> {
46 46
         return (
47 47
             <View style={{
48 48
                 aspectRatio: this.props.width / this.props.height,
49
+                borderRadius: 4,
49 50
                 ...this.props.style
50 51
             }}>
51 52
                 {this.getGrid()}

+ 1
- 0
src/screens/Game/components/Preview.js View File

@@ -30,6 +30,7 @@ class Preview extends React.PureComponent<Props> {
30 30
             style={{
31 31
                 marginRight: 5,
32 32
                 marginLeft: 5,
33
+                marginBottom: 5,
33 34
             }}
34 35
             key={index.toString()}
35 36
         />;

Loading…
Cancel
Save