Browse Source

SONAR-22164 Align issue location navigation text left (#11124)

pull/3361/head
Mathieu Suen 4 weeks ago
parent
commit
bfe472048f

+ 1
- 1
server/sonar-web/src/main/js/apps/issues/issues-subnavigation/IssueLocation.tsx View File

@@ -57,7 +57,7 @@ export default function IssueLocation(props: Readonly<Props>) {
return (
<StyledButton aria-label={normalizedMessage} aria-current={selected} onClick={handleClick}>
<StyledLocation
className={classNames('sw-p-1 sw-rounded-1/2 sw-flex sw-gap-2 sw-body-sm', {
className={classNames('sw-p-1 sw-rounded-1/2 sw-flex sw-gap-2 sw-body-sm sw-text-left', {
selected,
})}
ref={(n) => (node.current = n)}

Loading…
Cancel
Save