Skip to content

Commit

Permalink
Button Design fix
Browse files Browse the repository at this point in the history
  • Loading branch information
pparage committed May 31, 2024
1 parent 5cd1add commit 93a4532
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 5 deletions.
21 changes: 21 additions & 0 deletions src/component/bar/Menu.css
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,27 @@
.Menu .top-right-bar .immediate {
margin: 16px auto;
width: fit-content;
box-sizing: border-box;

/* Auto layout */

flex-direction: row;
align-items: center;

padding: 16px 24px;
gap: 19px;
position: relative;
font-size: 16px;
line-height: 150%;
color: var(--text-neutral-0);

background: var(--accent-blue);
border: 1px solid var(--accent-blue) --primary-blue-100;

/* Button drop shadow */

box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
border-radius: 200px;
}

.Menu .split-bar {
Expand Down
9 changes: 4 additions & 5 deletions src/component/bar/Menu.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -305,11 +305,10 @@ export default class Menu extends React.Component {

<div className="separator"/>
<div className="split-bar"/>

<a className="red small immediate"
href="/support"
>
IMMEDIATE SUPPORT
<a href="/support">
<button className="red small">
IMMEDIATE SUPPORT
</button>
</a>
</Nav>
</Navbar.Collapse>
Expand Down

0 comments on commit 93a4532

Please sign in to comment.