tech-systems / panes

🎉📱 Create dynamic modals, cards, panes for your applications in few steps. One instance – Thousands solutions. Any framework and free.
https://panejs.com
MIT License
681 stars 40 forks source link

[FEAT] Is it possible to display pane with horizontal offset by default #230

Closed garj closed 8 months ago

garj commented 8 months ago

I would like to know if there is an option to display the pane horizontally offset-ed at the start instead of in the middle of the screen?

Example: Screenshot 2024-01-16 at 10 02 51 PM

roman-rr commented 8 months ago

Hi @garj Right now you can hardcode with css, like so:

.pane {
    left: 15px !important;
    margin-left: unset !important;
 }

I know this not a best way, but might fill your need as a quick solution.

garj commented 8 months ago

works great! thanks!

garj commented 8 months ago

works great! thanks!