return (
<StyledPopupWrapper
- className="sw-p-3 sw-body-sm sw-w-[300px] sw-relative sw-border-0"
+ className="sw-p-3 sw-body-sm sw-w-[315px] sw-relative sw-border-0"
placement={(step.placement as Placement | undefined) ?? DEFAULT_PLACEMENT}
zLevel={PopupZLevel.Absolute}
{...tooltipProps}
)}
<div className="sw-flex sw-justify-between" ref={setRef}>
- <strong className="sw-mb-2">{step.title}</strong>
+ <strong className="sw-body-md-highlight sw-mb-2">{step.title}</strong>
<WrapperButton
className="sw-w-[30px] sw-h-[30px] sw--mt-2 sw--mr-2 sw-flex sw-justify-center"
{...skipProps}
},
}))}
tooltipComponent={(
- tooltipProps: React.PropsWithChildren<TooltipRenderProps & { step: SpotlightTourStep }>
+ tooltipProps: React.PropsWithChildren<TooltipRenderProps & { step: SpotlightTourStep }>,
) => <TooltipComponent stepXofYLabel={stepXofYLabel} {...tooltipProps} />}
{...otherProps}
/>
const StyledPopupWrapper = styled(PopupWrapper)<{ placement: Placement }>`
background-color: ${themeColor('spotlightBackgroundColor')};
${tw`sw-overflow-visible`};
+ ${tw`sw-rounded-1`};
${({ placement }) => getStyledPopupWrapperMargin(placement)};
`;
background-color: ${themeColor('spotlightPulseBackground')};
left: 100%;
top: calc(50% - calc(0.125rem / 2));
- transition: margin 0.3s, left 0.3s;
+ transition:
+ margin 0.3s,
+ left 0.3s;
content: '';
}
`;
#
#------------------------------------------------------------------------------
guiding.issue_list.1.title=Introducing Clean Code Attributes
-guiding.issue_list.1.content.1=Clean Code attributes are the characteristic that your code must have to be considered Clean Code.
+guiding.issue_list.1.content.1=Clean Code attributes are the characteristics that your code must have to be considered Clean Code.
guiding.issue_list.1.content.2=You can now filter by these attributes to evaluate why your code is breaking away from being clean.
guiding.issue_list.2.title=Introducing Software Qualities
guiding.issue_list.2.content.1=A software quality is a characteristic of software that contributes to its lasting value.