Hi @sybilrondeau,
For the first issue where the buttons are too close, this is a small conflict with your theme. The width
property on the buttons is being set to auto
instead of the expected 100%
which is the root cause of the issue however there are also some other default values being overridden. Adding the following CSS to your page should correct the conflict and let the defaults be used:
button.fg-panel-button {
display: inline-block;
text-align: center;
width: 100%;
padding: 1px 6px;
border-width: 0;
cursor: pointer;
}
I also see some custom CSS in your linked page already targeting the fg-panel-button
CSS class. I’m not exactly sure but it looks like you want to remove the borders from the buttons all together? You can do that by simply adding !important
to the border-width
value above.
As for the second issue, the ability to swipe has not been implemented on videos. The problem is when you swipe on a video it actually happens inside the <iframe/>
which is not controlled by us but rather by the site hosting the video. I haven’t thought of a clean solution which would not cause more issues than it solved.
Thanks
Steve