open-sauced / intro

Empowering Your Open Source Journey: From First Contribution to Project Leadership
https://opensauced.pizza/learn
Other
525 stars 103 forks source link

Bug: no padding between icon and text #20

Closed dev-phantom closed 11 months ago

dev-phantom commented 1 year ago

Describe the bug

There is no padding between the icon and text on mobile view Screenshot_20230724-210809

Steps to reproduce

  1. Go to https://intro.opensauced.pizza/#/01-intro
  2. See error

Browsers

No response

Additional context (Is this in dev or production?)

No response

Code of Conduct

Contributing Docs

Suldana commented 1 year ago

@dev-phantom I'm interested in solving this issue please assign to me

dev-phantom commented 1 year ago

@dev-phantom I'm interested in solving this issue please assign to me

Nice😊

You can use the .take to self assign your self to the issue

Suldana commented 1 year ago

@dev-phantom I'm interested in solving this issue please assign to me

Nice😊

You can use the .take to self assign your self to the issue

Thanks for your reply

Muniir1 commented 1 year ago

.take

luqman-salad commented 1 year ago

.take

Suldana commented 1 year ago

.take

dev-phantom commented 1 year ago

@OgDev-01 please can you assign @Suldana to this

Muniir1 commented 1 year ago

@OgDev-01 Please assign me i have fixed the issue

Suldana commented 1 year ago

dear @OgDev-01 please assign this issue to @Muniir1 he worked hard to solve this issue, please assign to him, thanks

dev-phantom commented 1 year ago

I'm confused here sorry I thought @Suldana had already fix this issue?

Ganesh1521 commented 11 months ago

Here is Code to fix this problem

.content { display: flex; align-items: center; padding: 20px; }

.text { flex: 1; padding-right: 20px; }

.diagram { flex: 1; text-align: center; }

.diagram img { max-width: 100%; }

CBID2 commented 11 months ago

Here is Code to fix this problem

.content { display: flex; align-items: center; padding: 20px; }

.text { flex: 1; padding-right: 20px; }

.diagram { flex: 1; text-align: center; }

.diagram img { max-width: 100%; }

Thanks @Ganesh1521, but PR #27, solves this.