1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-08-27 13:49:10 +02:00

Fix: correct styling of the new project icon

Remove colors from the svg; target it with css
This commit is contained in:
Thomas Heartman 2024-05-22 11:39:05 +02:00
parent fb3f84a7d6
commit dfbe0ba2b0
No known key found for this signature in database
GPG Key ID: BD1F880DAED1EE78
2 changed files with 5 additions and 4 deletions

View File

@ -1,5 +1,5 @@
<svg xmlns="http://www.w3.org/2000/svg" width="37" height="35" viewBox="0 0 37 35" fill="none">
<rect x="8.9864" y="9.93245" width="3.78378" height="13.2432" rx="1.41892" fill="#6C65E5" stroke="#6C65E5" stroke-width="0.945947" />
<rect x="16.5542" y="13.7161" width="3.78378" height="9.45946" rx="1.41892" fill="#6C65E5" stroke="#6C65E5" stroke-width="0.945947" />
<rect x="24.1217" y="18.4456" width="3.78378" height="4.72973" rx="1.41892" fill="#6C65E5" stroke="#6C65E5" stroke-width="0.945947" />
<rect x="8.9864" y="9.93245" width="3.78378" height="13.2432" rx="1.41892" stroke-width="0.945947" />
<rect x="16.5542" y="13.7161" width="3.78378" height="9.45946" rx="1.41892" stroke-width="0.945947" />
<rect x="24.1217" y="18.4456" width="3.78378" height="4.72973" rx="1.41892" stroke-width="0.945947" />
</svg>

Before

Width:  |  Height:  |  Size: 519 B

After

Width:  |  Height:  |  Size: 423 B

View File

@ -76,7 +76,8 @@ export const StyledParagraphInfo = styled('p')(({ theme }) => ({
}));
export const StyledProjectIcon = styled(ProjectIcon)(({ theme }) => ({
color: theme.palette.primary.main,
fill: theme.palette.primary.main,
stroke: theme.palette.primary.main,
}));
export const StyledIconBox = styled(Box)(({ theme }) => ({