|
@@ -30,7 +30,7 @@ class SidebarNav extends React.Component {
|
|
|
return (
|
|
return (
|
|
|
<button
|
|
<button
|
|
|
type="button"
|
|
type="button"
|
|
|
- className={`d-block btn btn-primary btn-lg ${isSelected ? 'active' : ''}`}
|
|
|
|
|
|
|
+ className={`d-block btn btn-primary ${isSelected ? 'active' : ''}`}
|
|
|
onClick={() => this.itemSelectedHandler(id)}
|
|
onClick={() => this.itemSelectedHandler(id)}
|
|
|
>
|
|
>
|
|
|
<i className="material-icons">{iconName}</i>
|
|
<i className="material-icons">{iconName}</i>
|
|
@@ -59,7 +59,7 @@ class SidebarNav extends React.Component {
|
|
|
const { PrimaryItem, SecondaryItem } = this;
|
|
const { PrimaryItem, SecondaryItem } = this;
|
|
|
|
|
|
|
|
return (
|
|
return (
|
|
|
- <div className="grw-sidebar-nav d-flex flex-column justify-content-between">
|
|
|
|
|
|
|
+ <div className="grw-sidebar-nav d-flex flex-column justify-content-between pb-4">
|
|
|
<div className="grw-sidebar-nav-primary-container">
|
|
<div className="grw-sidebar-nav-primary-container">
|
|
|
<PrimaryItem id="custom" label="Custom Sidebar" iconName="code" />
|
|
<PrimaryItem id="custom" label="Custom Sidebar" iconName="code" />
|
|
|
<PrimaryItem id="recent" label="Recent Changes" iconName="update" />
|
|
<PrimaryItem id="recent" label="Recent Changes" iconName="update" />
|