Skip to content

Commit

Permalink
Apply Prettier Formatting Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
bhavberi authored and github-actions[bot] committed Dec 11, 2024
1 parent 82234ea commit adca907
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/components/home.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ export default function HomeComponent() {
else {
// Get user system preference
const userPrefersDark = window.matchMedia(
"(prefers-color-scheme: dark)"
"(prefers-color-scheme: dark)",
).matches;
setDarkMode(userPrefersDark);
}
Expand Down Expand Up @@ -227,10 +227,10 @@ export default function HomeComponent() {
width: isMobile
? "90vw"
: isTablet
? "40vw"
: isBigTablet
? "40vw"
: "15vw",
? "40vw"
: isBigTablet
? "40vw"
: "15vw",
backgroundColor: theme.palette.background.paper,
boxShadow: "0 4px 8px rgba(0, 0, 0, 0.2)",
borderRadius: "10px",
Expand Down Expand Up @@ -430,10 +430,10 @@ export default function HomeComponent() {
width: isMobile
? "90vw"
: isTablet
? "40vw"
: isBigTablet
? "40vw"
: "15vw", // Responsive width
? "40vw"
: isBigTablet
? "40vw"
: "15vw", // Responsive width
backgroundColor: theme.palette.background.paper,
boxShadow: "0 4px 8px rgba(0, 0, 0, 0.2)",
borderRadius: "10px",
Expand Down

0 comments on commit adca907

Please sign in to comment.