Skip to content

Commit

Permalink
Fix text align in Safari (elastic#92374)
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniil committed Feb 24, 2021
1 parent 88cea0a commit d5fe91e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@
margin-left: $euiSizeS;
}

.visListingTable__titleLink {
text-align: left;
}

.visListingCallout {
max-width: 1000px;
width: 100%;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ export const getTableColumns = (
render: (field: string, { editApp, editUrl, title, error }: VisualizationListItem) =>
// In case an error occurs i.e. the vis has wrong type, we render the vis but without the link
!error ? (
<RedirectAppLinks application={application}>
<RedirectAppLinks application={application} className="visListingTable__titleLink">
<EuiLink
href={getVisualizeListItemLink(application, kbnUrlStateStorage, editApp, editUrl)}
data-test-subj={`visListingTitleLink-${title.split(' ').join('-')}`}
Expand Down

0 comments on commit d5fe91e

Please sign in to comment.