fix(Object&Collection Previews): bump border from 0.5px to 1px

This commit is contained in:
Aminejv 2021-08-19 17:48:02 +01:00
parent 54153a5cec
commit 4d189be97c
2 changed files with 4 additions and 4 deletions

View File

@ -19,7 +19,7 @@ const STYLES_CONTAINER = (theme) => css`
display: flex;
flex-direction: column;
background-color: ${theme.semantic.bgLight};
box-shadow: 0 0 0 0.5px ${theme.system.grayLight4}, ${theme.shadow.lightSmall};
box-shadow: 0 0 0 1px ${theme.system.grayLight4}, ${theme.shadow.lightSmall};
border-radius: 16px;
width: 100%;
overflow: hidden;
@ -41,7 +41,7 @@ const STYLES_INNER_DESCRIPTION = (theme) => css`
width: 100%;
background-color: ${theme.semantic.bgLight};
padding: 9px 16px 0px;
box-shadow: 0 -0.5px 0.5px ${theme.system.grayLight4};
box-shadow: 0 -0.5px 1px ${theme.system.grayLight4};
`;
const STYLES_SPACE_BETWEEN = css`

View File

@ -15,7 +15,7 @@ const STYLES_WRAPPER = (theme) => css`
position: relative;
background-color: ${theme.semantic.bgLight};
transition: box-shadow 0.2s;
box-shadow: 0 0 0 0.5px ${theme.system.grayLight4}, ${theme.shadow.card};
box-shadow: 0 0 0 1px ${theme.system.grayLight4}, ${theme.shadow.card};
border-radius: 16px;
overflow: hidden;
cursor: pointer;
@ -37,7 +37,7 @@ const STYLES_INNER_DESCRIPTION = (theme) => css`
width: 100%;
background-color: ${theme.semantic.bgLight};
padding: 9px 16px 0px;
box-shadow: 0 -0.5px 0.5px ${theme.system.grayLight4};
box-shadow: 0 -0.5px 1px ${theme.system.grayLight4};
`;
const STYLES_TAG = css`