Skip to content

Commit

Permalink
fix: uncommented code because now there are available the component t…
Browse files Browse the repository at this point in the history
…okens
  • Loading branch information
soslayando committed Jul 11, 2023
1 parent 8695d5d commit ddaa712
Showing 1 changed file with 5 additions and 11 deletions.
16 changes: 5 additions & 11 deletions packages/core/src/components/BoxMessage/StyledBoxMessage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,14 @@ export interface StyledBoxMessageProps {
export const StyledBoxMessage = styled.div<StyledBoxMessageProps>`
${({ status = 'info', theme }) => {
const cmpTokens = theme.cmp.boxMessage;
// return css`
// position: relative;
// display: flex;
// gap: ${cmpTokens.space.padding};
// border: ${cmpTokens.shape.borderSize} solid
// ${cmpTokens.color.border[status]};
// border-radius: ${cmpTokens.shape.borderRadius};
// padding: ${cmpTokens.space.padding};
// background-color: ${cmpTokens.color.background[status]};
// `;
return css`
position: relative;
display: flex;
gap: ${cmpTokens.space.padding};
border: ${cmpTokens.shape.borderSize} solid
${cmpTokens.color.border[status]};
border-radius: ${cmpTokens.shape.borderRadius};
padding: ${cmpTokens.space.padding};
background-color: ${cmpTokens.color.background[status]};
`;
}}
Expand Down

0 comments on commit ddaa712

Please sign in to comment.