Skip to content

Commit

Permalink
events btns bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
VadhwanaParth15 committed Feb 12, 2023
1 parent c9572ce commit 4d7ac46
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const App = () => {
<NavBar/>
<Home/>
<About />
{/* <Event /> */}
<Event />
{/* <Team /> */}
{/* <Sponsor /> */}
<Glimpse />
Expand Down
2 changes: 1 addition & 1 deletion src/components/Events/Event.css
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
line-height: 18px;
text-align: center;
}
.btne{
.button{
background: linear-gradient(180deg, rgba(98, 212, 237, 0.8) -27.94%, rgba(172, 112, 255, 0.79) 76.47%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
Expand Down
2 changes: 1 addition & 1 deletion src/components/Events/EventCard.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export const EventCard = ({ imgurl, title, description,link}) => {
<Card.Text className='description mx-auto d-flex align-items-center justify-content-center'>
{description}
</Card.Text>
<Button className='mx-auto d-flex align-items-center justify-content-center btne' variant="primary" href={link}>view more</Button>
<Button className='mx-auto d-flex align-items-center justify-content-center button' variant="primary" href={link}>view more</Button>
</Card.Body>
</Card>
</div>
Expand Down
4 changes: 2 additions & 2 deletions src/components/signup/Signup.css
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
text-transform: uppercase;;
}

.btn-primary {
.btnprimary {
width: 120px;
height: 40px;
background-color: #1d2a2e;
Expand Down Expand Up @@ -215,7 +215,7 @@
text-transform: uppercase;;
}

.btn-primary {
.btnprimary {
width: 120px;
height: 40px;
background-color: #1d2a2e;
Expand Down
2 changes: 1 addition & 1 deletion src/components/signup/Signup.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const Signup = () => {

<input type="email" placeholder=' Enter your Email' required="required" />
</div>
<button className="btn-primary">
<button className="btnprimary">
Get Link
<div className="sbtn" />

Expand Down

0 comments on commit 4d7ac46

Please sign in to comment.