Skip to content

Commit bc664e7

Browse files
committed
Update stryles
1 parent 55cef64 commit bc664e7

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/app/utils/searchbox.styles.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
export const searchBoxStyles: any = () => ({
22
root: {
3-
width: '97%'
3+
width: '100%'
44
},
55
field: [
66
{

src/app/views/sidebar/resource-explorer/ResourceExplorer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ const UnstyledResourceExplorer = (props: any) => {
154154
<Stack horizontal reversed verticalAlign="center" tokens={{ childrenGap: 8 }}>
155155
<Stack.Item align='auto'>
156156
<div style={styles.apiCollectionCount}>
157-
{selectedLinks.length > 0 ? `(${selectedLinks.length})` : '(0)'}
157+
{selectedLinks.length > 0 ? `(${selectedLinks.length})` : ''}
158158
</div>
159159
</Stack.Item>
160160
</Stack>

src/app/views/sidebar/resource-explorer/resources.styles.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export const resourceExplorerStyles = (theme: ITheme) => {
3434
display: 'flex',
3535
alignItems: 'center',
3636
justifyContent: 'flex-start',
37-
backgroundColor: theme.palette.neutralLighterAlt,
37+
backgroundColor: theme.palette.white,
3838
textAlign: 'left',
3939
height: '40px',
4040
marginTop: '10px'

0 commit comments

Comments
 (0)