Skip to content

Commit 3ca370d

Browse files
committed
🥘🎼 ↝ Fixing some css/styling issues
1 parent 1f5ea9e commit 3ca370d

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

components/Content/DiscussCard.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ export function RoverContentCard({
160160
</div>
161161
<div className="text-gray-500 cursor-pointer">
162162
<button className="hover:bg-gray-50 rounded-full p-1">
163-
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
163+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" strokeLinejoin="round">
164164
<circle cx="12" cy="7" r="1" />
165165
<circle cx="12" cy="12" r="1" />
166166
<circle cx="12" cy="17" r="1" />

components/Core/BottomBar.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ export const CreateBar = ({ onTabClick }) => {
145145
<path
146146
stroke="currentColor"
147147
stroke-linecap="round"
148-
stroke-linejoin="round"
148+
strokeLinejoin="round"
149149
stroke-width="2"
150150
d="M9 1v16M1 9h16"
151151
/>
@@ -176,7 +176,7 @@ export const CreateBar = ({ onTabClick }) => {
176176
<path
177177
stroke="currentColor"
178178
stroke-linecap="round"
179-
stroke-linejoin="round"
179+
strokeLinejoin="round"
180180
stroke-width="2"
181181
d="M4 12.25V1m0 11.25a2.25 2.25 0 0 0 0 4.5m0-4.5a2.25 2.25 0 0 1 0 4.5M4 19v-2.25m6-13.5V1m0 2.25a2.25 2.25 0 0 0 0 4.5m0-4.5a2.25 2.25 0 0 1 0 4.5M10 19V7.75m6 4.5V1m0 11.25a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5ZM16 19v-2"
182182
/>

components/Section/Layout.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ const Layout: React.FC<DashboardLayoutProps> = ({ children }) => {
7373
>
7474
<path
7575
stroke-linecap="round"
76-
stroke-linejoin="round"
76+
strokeLinejoin="round"
7777
stroke-width="2"
7878
d="M16 11V7a4 4 0 00-8 0v4M5 9h14l1 12H4L5 9z"
7979
></path>

pages/explore/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ export default function Explore() {
6666
>
6767
<path
6868
stroke-linecap="round"
69-
stroke-linejoin="round"
69+
strokeLinejoin="round"
7070
stroke-width="2"
7171
d="M16 11V7a4 4 0 00-8 0v4M5 9h14l1 12H4L5 9z"
7272
></path>

pages/index.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ export function PublicLanding() {
120120
<div className="chat chat-start">
121121
<div className="chat-bubble">A dust storm is brewing on your home planet, time to investigate.</div>
122122
</div></div>
123-
<UponSignupModal />
123+
{isDesktopOrLaptop && ( <UponSignupModal /> )}
124124
</div>
125125
<div className="absolute inset-0 grid grid-cols-3 grid-rows-3 gap-4 p-40 my-12">
126126
{/* Content here */}
@@ -155,7 +155,7 @@ export function PublicLanding() {
155155
>
156156
<path
157157
stroke-linecap="round"
158-
stroke-linejoin="round"
158+
strokeLinejoin="round"
159159
stroke-width="2"
160160
d="M16 11V7a4 4 0 00-8 0v4M5 9h14l1 12H4L5 9z"
161161
></path>

0 commit comments

Comments
 (0)