-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(card): create new content card #119
feat(card): create new content card #119
Conversation
title: string | ||
chipText: string | ||
bpnHeading?: string | ||
bpnDetails?: string |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please remember the shared components should not contain any business specific details, so the prefix bpn
for business partner number is not good here. Let's simply call it "heading" and "detail"
height: '60px', | ||
'-webkit-line-clamp': '2', | ||
display: '-webkit-box', | ||
'-webkit-box-orient': 'vertical', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if we have any CSS properties starting with "-webkit-..." we should also add the standard version:
'-webkit-box-orient': 'vertical',
boxOrient: 'vertical',
same with lineClamp two lines before
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@oyo Made the changes as requested
Quality Gate passedIssues Measures |
Description
Why
Added new Card to use them in portal frontend
Issue
eclipse-tractusx/portal-frontend#613
Checklist
Please delete options that are not relevant.