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
         return (
46
         return (
47
             <View style={{
47
             <View style={{
48
                 aspectRatio: this.props.width / this.props.height,
48
                 aspectRatio: this.props.width / this.props.height,
49
+                borderRadius: 4,
49
                 ...this.props.style
50
                 ...this.props.style
50
             }}>
51
             }}>
51
                 {this.getGrid()}
52
                 {this.getGrid()}

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

30
             style={{
30
             style={{
31
                 marginRight: 5,
31
                 marginRight: 5,
32
                 marginLeft: 5,
32
                 marginLeft: 5,
33
+                marginBottom: 5,
33
             }}
34
             }}
34
             key={index.toString()}
35
             key={index.toString()}
35
         />;
36
         />;

Loading…
Cancel
Save