We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 42fc0bf + 0a3d2a0 commit 9d8d8beCopy full SHA for 9d8d8be
src/views/navigation/screens/DebugColorsScreen.tsx
@@ -14,7 +14,6 @@ const ColorCircle = styled(View)`
14
width: 50px;
15
height: 50px;
16
border-radius: 50px;
17
- border: 1px solid white;
18
`;
19
20
const DebugColorsScreen: FC<PropsWithNavigation> = ({ navigation }) => {
@@ -32,6 +31,9 @@ const DebugColorsScreen: FC<PropsWithNavigation> = ({ navigation }) => {
32
31
key={key}
33
style={{
34
backgroundColor: value,
+ borderColor: theme.colors.onSurface,
35
+ borderWidth: 1,
36
+ borderStyle: 'dashed',
37
}}
38
/>
39
)}
0 commit comments