Is there a way to make my 'MyTitle' component stay fixed at the top, even when the 'MyForm' component grows vertically? Currently, as the 'MyForm' component expands, the MyTitle component moves up and eventually disappears. How can I fix this issue? Would using CSS or antd solve this problem?
<Space direction="vertical" size={100}>
<MyTitle />
<Card className="card">
<MyForm />
</Card>
</Space>
Here are some visual representations of the issue:
-----------------------------
my title
-----------------------------
card
-----------------------------
As the card grows, the title disappears:
^
my title ^
-----------------------------
card
-----------------------------