-
Notifications
You must be signed in to change notification settings - Fork 101
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bug/shashank kavli/158# #159
Changes from 2 commits
72734e7
f242a09
d49ea2b
4707f59
7d041f8
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -177,9 +177,9 @@ export const Header = styled.header` | |||||
padding: 10px 0; | ||||||
display: flex; | ||||||
justify-content: center; | ||||||
align-items:center; | ||||||
border-radius:20px; | ||||||
border: 1px solid gray | ||||||
align-items:center | ||||||
// border-radius:20px; | ||||||
// border: 1px solid gray | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
} | ||||||
.btn-container{ | ||||||
display: none; | ||||||
|
@@ -213,4 +213,4 @@ export const Header = styled.header` | |||||
} | ||||||
` | ||||||
|
||||||
export default Header; | ||||||
export default Header; |
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -33,6 +33,7 @@ function Navigation({theme, toggleTheme, showSignUpButton}) { | |||||
{/* <a href="https://playground.meshery.io" className="login-btn" role="button">Login</a> */} | ||||||
</div> | ||||||
<div className="dropdown_btn" onClick={handleNavOpen}> | ||||||
<Toggle theme={theme} toggleTheme={toggleTheme} /> | ||||||
{openNav ? | ||||||
(<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" strokeWidth={1.5} stroke="currentColor" className="hamburger-icon"> | ||||||
<path strokeLinecap="round" strokeLinejoin="round" d="M6 18L18 6M6 6l12 12" /> | ||||||
|
@@ -43,9 +44,9 @@ function Navigation({theme, toggleTheme, showSignUpButton}) { | |||||
</div> | ||||||
</nav> | ||||||
<div className={openNav ? "dropdown_menu_opened" : "dropdown_menu_closed"}> | ||||||
<div className="mode-btn"> | ||||||
{/* <div className="mode-btn"> | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
<Toggle theme={theme} toggleTheme={toggleTheme} /> | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
</div> | ||||||
</div> */} | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
<div className="action-btns"> | ||||||
<a href="#signup-form" className="signup-btn" role="button">Sign Up</a> | ||||||
{/* <a href="https://demo.meshery.io" className="login-btn" role="button">Login</a> */} | ||||||
|
@@ -55,4 +56,4 @@ function Navigation({theme, toggleTheme, showSignUpButton}) { | |||||
) | ||||||
} | ||||||
|
||||||
export default Navigation | ||||||
export default Navigation |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.