remove non needed important

This commit is contained in:
akcodez
2025-09-30 12:32:22 -07:00
parent 46c6a5de5a
commit 55db17553d
3 changed files with 15 additions and 15 deletions

View File

@@ -145,7 +145,7 @@ export function Navbar(props) {
const isNavbarCollapsed =
navbarToggler.getAttribute("aria-expanded") === "true";
if (isNavbarCollapsed) {
navbarToggler.click(); // Simulate click to toggle navbar
navbarToggler?.click(); // Simulate click to toggle navbar
}
};

File diff suppressed because one or more lines are too long

View File

@@ -2213,30 +2213,30 @@ html.light {
// Single card layout - background image full height and spacing
.com-card.single-card {
.bottom-right-img.bug-bounty-card-bg-2 {
height: 714px !important;
width: auto !important;
object-fit: cover !important;
object-position: right bottom !important;
height: 714px ;
width: auto;
object-fit: cover;
object-position: right bottom;
}
.card-content {
gap: 0 !important;
gap: 0;
.card-title {
margin-bottom: 24px !important;
margin-top: 0 !important;
margin-bottom: 24px;
margin-top: 0;
}
.card-description {
margin-bottom: 24px !important;
margin-top: 0 !important;
flex-grow: 0 !important;
padding: 0 !important;
margin-bottom: 24px;
margin-top: 0;
flex-grow: 0;
padding: 0;
}
.card-links {
margin-top: 0 !important;
margin-bottom: 0 !important;
margin-top: 0;
margin-bottom: 0;
}
}
}