We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3af1d01 commit 95795c0Copy full SHA for 95795c0
src/components/HomePageComponents/Section1.tsx
@@ -59,15 +59,26 @@ const Section1: React.FC<Section1Props> = ({ scrollToNext }) => {
59
gap: 2,
60
}}
61
>
62
- <img
+ <Box
63
+ component="img"
64
src={`${process.env.PUBLIC_URL}/img/3d_graph_logo.png`}
65
alt="3d_graph"
- width="30%"
66
height="auto"
67
- ></img>
+ sx={{
68
+ height: "auto",
69
+ width: {
70
+ xs: 0,
71
+ sm: 0,
72
+ md: "30%",
73
+ },
74
+ }}
75
+ ></Box>
76
<Typography
77
variant="h4"
- sx={{ color: Colors.lightGray, fontWeight: "bold" }}
78
79
+ color: Colors.lightGray,
80
+ fontWeight: "bold",
81
82
83
Efficiently manage and explore your databases and datasets with
84
ease.
0 commit comments