Skip to content

Commit eafb63c

Browse files
authored
Merge pull request #73 from predator4hack/fix-navbar-styles
Made some improvements in the styles of navbar component
2 parents 8189bcb + 6da9d7f commit eafb63c

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

src/components/Navigation.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,13 @@ import SearchBar from './Search';
77

88
function Navigation() {
99
return (
10-
<Navbar collapseOnSelect expand='lg' bg='light' variant='light'>
10+
<Navbar
11+
collapseOnSelect
12+
expand='lg'
13+
bg='light'
14+
variant='light'
15+
style={{ paddingLeft: '30px', paddingRight: '30px' }}
16+
>
1117
<Navbar.Brand href='#home'>
1218
<img src={Logo} alt='' srcSet='' height={81} width={150} />
1319
</Navbar.Brand>

src/components/Search.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import '../index.css';
44

55
function SearchBar() {
66
return (
7-
<div className='search'>
7+
<div className='search' >
88
<div className='searchInputs'>
99
<input type='text' />
1010
<div className='searchIcon'>

0 commit comments

Comments
 (0)