Skip to content

Commit 9d8d8be

Browse files
Merge pull request #119 from OpenDTU-App/114-add-border-around-debug-colors
2 parents 42fc0bf + 0a3d2a0 commit 9d8d8be

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/views/navigation/screens/DebugColorsScreen.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ const ColorCircle = styled(View)`
1414
width: 50px;
1515
height: 50px;
1616
border-radius: 50px;
17-
border: 1px solid white;
1817
`;
1918

2019
const DebugColorsScreen: FC<PropsWithNavigation> = ({ navigation }) => {
@@ -32,6 +31,9 @@ const DebugColorsScreen: FC<PropsWithNavigation> = ({ navigation }) => {
3231
key={key}
3332
style={{
3433
backgroundColor: value,
34+
borderColor: theme.colors.onSurface,
35+
borderWidth: 1,
36+
borderStyle: 'dashed',
3537
}}
3638
/>
3739
)}

0 commit comments

Comments
 (0)