Color Navbar, Icons
This commit is contained in:
@ -1,6 +1,7 @@
|
|||||||
.navbar {
|
.navbar {
|
||||||
background-color: #060b26;
|
background-color: #ba3a07c2;
|
||||||
height: 80px;
|
height: 80px;
|
||||||
|
width: 100px;
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: flex-start;
|
justify-content: flex-start;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
@ -13,7 +14,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.nav-menu {
|
.nav-menu {
|
||||||
background-color: #060b26;
|
background-color: #ba3a07c2;
|
||||||
width: 250px;
|
width: 250px;
|
||||||
height: 100vh;
|
height: 100vh;
|
||||||
display: flex;
|
display: flex;
|
||||||
@ -59,7 +60,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.navbar-toggle {
|
.navbar-toggle {
|
||||||
background-color: #060b26;
|
background-color: #ba3a07c2;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 80px;
|
height: 80px;
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import * as FaIcons from 'react-icons/fa';
|
import * as MdIcons from 'react-icons/md';
|
||||||
import * as AiIcons from 'react-icons/ai';
|
import * as AiIcons from 'react-icons/ai';
|
||||||
import * as IoIcons from 'react-icons/io';
|
import * as BiIcons from 'react-icons/bi';
|
||||||
|
|
||||||
export const SidebarData = [
|
export const SidebarData = [
|
||||||
{
|
{
|
||||||
@ -13,13 +13,13 @@ export const SidebarData = [
|
|||||||
{
|
{
|
||||||
title: 'Flights',
|
title: 'Flights',
|
||||||
path: '/flights',
|
path: '/flights',
|
||||||
icon: <IoIcons.IoIosPaper />,
|
icon: <MdIcons.MdFlightTakeoff />,
|
||||||
cName: 'nav-text'
|
cName: 'nav-text'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: 'Seasons',
|
title: 'Seasons',
|
||||||
path: '/seasons',
|
path: '/seasons',
|
||||||
icon: <FaIcons.FaCartPlus />,
|
icon: <BiIcons.BiCalendar />,
|
||||||
cName: 'nav-text'
|
cName: 'nav-text'
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|||||||
Reference in New Issue
Block a user