Showing 1 – 3 of 3 replies
curb

Horitzontal scroll for smaller width

curb PURCHASED
1 month ago
https://seantheme.com/droplet/page_file_manager.html

On mobile, horizontal scrolling doesn't display the rest of the data. It cuts of the year and is blank for the other columns depending on the resolution width.
SeanTheme
SeanTheme SELLER
1 month ago
Hi,

You just need to change the following code for the quick fix.

from
<div class="flex-1 overflow-hidden">
to
<div class="flex-1 overflow-scroll">

Best Regards,
Sean.
curb
curb PURCHASED
1 month ago
Thanks!

The values for select form on dark mode is dark when opening the dropdown instead of the same color as the default dropdown value.

https://seantheme.com/droplet/form_elements.html
SeanTheme
SeanTheme SELLER
1 month ago
Hi,

You may use the following css to adjust the select dropdown option color.

e.g

[data-bs-theme="dark"] .form-select option {
color: #fff;
}

Best Regards,
Sean.