ricobuilds/gpt2markdown

Button not rendered with recent UI update from Chatgpt.

Opened this issue · 2 comments

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']"
);

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

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