Praveen Juge

Written on

Raise Your First Pull Request as a Designer

A step-by-step guide for designers to ship a focused, review-friendly pull request without becoming a developer.

You don’t need to “become a developer” to open a good pull request. You just need a tiny, focused change and a clear story.


Pick a tiny win

Ship something you can finish today:

Small scope keeps the diff readable and review friendly.


Branch + title

Clear names help teammates scan and trust your change.


Tell a short story (paste this)


The checklist reviewers love

Visual

A11y

Tokens

Perf/QA


What to attach


Tiny example (tokens + focus)

// before
<button className="px-3 py-2 text-white bg-[#1a73e8] rounded-[4px]">
  Pay invoice
</button>

// after
<button
  className="
    px-space-3 py-space-2
    text-fg-on-primary bg-bg-primary
    rounded-radius-2
    focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-outline
  "
>
  {t('invoices.payCta')}
</button>

Ship it

Open the pull request. Ask for one engineer and one designer to review. The goal isn’t perfect code—it’s a clear, safe change that moves the system forward. If it takes more than a day, the scope is too big. Slice it and try again.