Fixing error prettier redesign CI

This commit is contained in:
mathysPaul
2023-09-19 17:36:19 +02:00
parent 073ff033f3
commit 1abfbf391f
22 changed files with 986 additions and 778 deletions
+2 -2
View File
@@ -18,7 +18,7 @@ const ElementList = ({ elements, style }: ElementListProps) => {
// const isDark = colorScheme === 'dark';
const elementStyle = {
borderRadius: 10,
shadowOpacity: 0.30,
shadowOpacity: 0.3,
shadowRadius: 4.65,
elevation: 8,
backgroundColor: 'transparent',
@@ -30,7 +30,7 @@ const ElementList = ({ elements, style }: ElementListProps) => {
{elements.map((element, index) => (
<Box key={element.title}>
<Element {...element} />
{index < elements.length - 1 && <Divider bg="transparent" thickness="2"/>}
{index < elements.length - 1 && <Divider bg="transparent" thickness="2" />}
</Box>
))}
</Column>