-
Notifications
You must be signed in to change notification settings - Fork 35
JDS Components #143
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
base: jds-2.0
Are you sure you want to change the base?
JDS Components #143
Conversation
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.
There is no need of self explanotory comments we can remove to reduce lib size
}, | ||
methods: { | ||
getLabelStyle(crumb) { | ||
// Merge the default labelStyle with crumb-specific styles, if any |
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 comments use is complete can you remove plz
} | ||
|
||
.image-container.rounded-corner img { | ||
border-radius: 8px; /* Set your desired border radius */ |
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.
try to use consistent units as above used 0.5 rem
and here 8px
as both same on the calculation
will suggest to use relative units
.jds-link:hover { | ||
color: red; /* Change link color on hover */ | ||
text-decoration: none; /* Remove underline on hover */ | ||
} | ||
|
||
/* Active styles for the link (when clicked) */ | ||
.jds-link:active { | ||
color: green; /* Change link color when clicked */ | ||
} | ||
|
||
/* Focus styles for the link (when tabbed to) */ | ||
.jds-link:focus { | ||
outline: 2px solid purple; /* Add an outline when the link is focused */ |
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.
no need for comments I think as the selectors are self explanatory
No description provided.