diff --git a/src/assets/icons/index.js b/src/assets/icons/index.js
index 9e48dcb..7f3892f 100644
--- a/src/assets/icons/index.js
+++ b/src/assets/icons/index.js
@@ -89,6 +89,7 @@ import {
cilLockLocked,
cilMagnifyingGlass,
cilMap,
+ cilMediaPlay,
cilMenu,
cilMoon,
cilNotes,
@@ -191,6 +192,7 @@ export const icons = Object.assign(
cilLockLocked,
cilMagnifyingGlass,
cilMap,
+ cilMediaPlay,
cilMenu,
cilMoon,
cilNotes,
diff --git a/src/containers/_nav.js b/src/containers/_nav.js
index df5d862..0800566 100644
--- a/src/containers/_nav.js
+++ b/src/containers/_nav.js
@@ -126,7 +126,6 @@ const _nav = [
{
_component: 'CNavGroup',
anchor: 'Buttons',
- // route: '/buttons',
icon: ,
items: [
{
@@ -214,7 +213,6 @@ const _nav = [
{
_component: 'CNavGroup',
anchor: 'Icons',
- // route: '/icons',
icon: ,
items: [
{
@@ -244,7 +242,6 @@ const _nav = [
{
_component: 'CNavGroup',
anchor: 'Notifications',
- // route: '/notifications',
icon: ,
items: [
{
@@ -284,9 +281,6 @@ const _nav = [
text: 'NEW',
},
},
- // {
- // _component: 'CSidebarNavDivider'
- // },
{
_component: 'CNavTitle',
anchor: 'Extras',
@@ -322,59 +316,6 @@ const _nav = [
},
],
},
- // {
- // _component: 'CNavItem',
- // anchor: 'Disabled',
- // icon: ,
- // badge: {
- // color: 'secondary',
- // text: 'NEW',
- // },
- // addLinkClass: 'c-disabled',
- // 'disabled': true
- // },
- // {
- // _component: 'CSidebarNavDivider',
- // classanchor: 'm-2'
- // },
- // {
- // _component: 'CNavTitle',
- // items: ['Labels']
- // },
- // {
- // _component: 'CNavItem',
- // anchor: 'Label danger',
- // to: '',
- // icon: {
- // anchor: ,
- // classanchor: 'text-danger'
- // },
- // label: true
- // },
- // {
- // _component: 'CNavItem',
- // anchor: 'Label info',
- // to: '',
- // icon: {
- // anchor: ,
- // classanchor: 'text-info'
- // },
- // label: true
- // },
- // {
- // _component: 'CNavItem',
- // anchor: 'Label warning',
- // to: '',
- // icon: {
- // anchor: ,
- // classanchor: 'text-warning'
- // },
- // label: true
- // },
- // {
- // _component: 'CSidebarNavDivider',
- // classanchor: 'm-2'
- // }
]
export default _nav
diff --git a/src/scss/_fixes.scss b/src/scss/_fixes.scss
deleted file mode 100644
index 93d3535..0000000
--- a/src/scss/_fixes.scss
+++ /dev/null
@@ -1,16 +0,0 @@
-// todo: disabled button styles
-button {
- &:disabled {
- cursor: default;
- }
- &.disabled {
- cursor: default;
- }
-}
-
-// todo: brand button icon margin
-.btn-brand:not(:only-child) {
- .c-icon {
- margin-top: 0 !important;
- }
-}