ricobuilds / gpt2markdown

A browser extension that exports your ChatGPT conversations to Markdown format.
https://chrome.google.com/webstore/detail/gpt2markdown/mlfimpibamecbdnofjnbkjomeieclnjl
MIT License
73 stars 20 forks source link

Button not rendered with recent UI update from Chatgpt. #19

Open nkabram opened 1 year ago

nkabram commented 1 year ago

Easy fix, just add "items-stretch" to the following line of code:

inputActionNode = document.querySelector(
    "div[class*='relative flex h-full flex-1 md:flex-col']"
);

becomes

inputActionNode = document.querySelector(
    "div[class*='relative flex h-full flex-1 items-stretch md:flex-col']"
);
joshsj89 commented 1 year ago

And remember to change both instances of that line (line 16 & line 62)

ricobuilds commented 1 year ago

Implementing it right now + modded the parent container to remove the margin-top stylings which made the button look a bit weird on smaller screen

old gptexpo new gptexpo