Skip to content

Commit

Permalink
Update documentation link icon (#1390)
Browse files Browse the repository at this point in the history
* Update documentation link icon

* Use theme color for documentation link icon
  • Loading branch information
millicentachieng authored Feb 1, 2022
1 parent 35ab3b2 commit 99aed2a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
8 changes: 3 additions & 5 deletions src/app/views/sidebar/Sidebar.styles.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
import {
FontSizes, FontWeights,
ITheme
} from '@fluentui/react';
import { FontSizes, FontWeights, ITheme } from '@fluentui/react';

export const sidebarStyles = (theme: ITheme) => {
const pageHeightInVh = '60vh';
Expand Down Expand Up @@ -113,7 +110,8 @@ export const sidebarStyles = (theme: ITheme) => {
fontSize: FontSizes.icon,
textAlign: 'left',
verticalAlign: 'center',
cursor: 'pointer'
cursor: 'pointer',
color: theme.palette.themePrimary
},
links: {
color: `${theme.palette.blueMid} !important`
Expand Down
2 changes: 1 addition & 1 deletion src/app/views/sidebar/sample-queries/SampleQueries.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ export class SampleQueries extends Component<ISampleQueriesProps, any> {
calloutProps={{ gapSpace: 0 }}
>
<Icon
iconName='NavigateExternalInline'
iconName='TextDocument'
onClick={() => this.onDocumentationLinkClicked(item)}
className={classes.docLink}
style={{
Expand Down

0 comments on commit 99aed2a

Please sign in to comment.