-
-
Notifications
You must be signed in to change notification settings - Fork 266
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
Changed the Display Section of Our Features and What Our users say #910
base: main
Are you sure you want to change the base?
Changes from all commits
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 |
---|---|---|
|
@@ -196,7 +196,7 @@ header .fa-bars { | |
|
||
/* Default light mode styles */ | ||
body { | ||
background-color: var(--off-white); | ||
background-color: #e4e3e3; | ||
/* Changed from #ffffff to Off-White */ | ||
Comment on lines
+199
to
200
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. 🛠️ Refactor suggestion Use CSS variables instead of hardcoded color values In line 199, the Apply this diff to use the CSS variable: - background-color: #e4e3e3;
+ background-color: var(--off-white);
|
||
color: var(--dark-slate); | ||
/* Changed from #000000 to Dark Slate */ | ||
|
@@ -354,7 +354,7 @@ body { | |
margin-bottom: 20px; | ||
font-weight: 600; | ||
color: #fff; | ||
border-bottom: 2px solid #3f10ea; | ||
/* border-bottom: 2px solid #3f10ea; */ | ||
padding-bottom: 10px; | ||
} | ||
|
||
|
@@ -475,7 +475,7 @@ body { | |
right: 0; | ||
background: #f9f9f9; | ||
/* Updated background to a softer light color */ | ||
border-top: 0.1rem solid rgba(0, 0, 0, 0.1); | ||
/* border-top: 0.1rem solid rgba(0, 0, 0, 0.1); */ | ||
clip-path: polygon(0 0, 100% 0, 100% 0, 0 0); | ||
} | ||
|
||
|
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.
🛠️ Refactor suggestion
Consider Enhancing Contrast for Testimonial Cards
The
background-color
of#ffffff
on a#e4e3e3
background may result in low contrast between the testimonial cards and the background. Consider adjusting the background color or adding a more pronounced box-shadow to improve visual separation and accessibility.