Skip to content

Commit

Permalink
Updated Go Pro button
Browse files Browse the repository at this point in the history
Signed-off-by: Hemashree M S <hemashree21.msh@gmail.com>
  • Loading branch information
Hemashree21 committed Jun 3, 2024
1 parent 4b87f62 commit c47ebfe
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 1 deletion.
24 changes: 24 additions & 0 deletions src/Components/Footer.css
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,30 @@
display: flex;
}

.go-pro-btn {
background: linear-gradient(#ff21bc, #b21783);
font-style: oblique;
font-weight: bold;
font-size: 20px;
border-radius: 25px;
transition: ease-in-out 500ms;
margin-right: 1rem;
text-decoration: none !important;
}

.go-pro-btn:hover {
background-color: #b21783;
font-size: 22px;
}

.profileContainer a {
text-decoration: none;
}

.footer-title a {
text-decoration: none;
}

@media (max-width: 768px) {
.footer-container {
flex-direction: column;
Expand Down
2 changes: 1 addition & 1 deletion src/Components/Footer.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const Footer = () => {
<div className='footer-container footer-container-md'>
<div className='footer-1'>
<img src={logo} alt="logo"/>
<div className='footer-title'>UniCollab</div>
<div className='footer-title'>Unicollab</div>
</div>
<div className='footer-half footer-sections'>
<div className='footer-2'>
Expand Down
1 change: 1 addition & 0 deletions src/Components/TopContainer.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ function TopContainer() {
</div>

<div className='profileContainer'>
<a href="/pricing"><button className="go-pro-btn">Go Pro</button></a>
<div className='notification-container' ref={dropdownRef}>
<div className='profileIcon' onClick={toggleDropdown}>
<FaBell />
Expand Down

0 comments on commit c47ebfe

Please sign in to comment.