6 Answer(s)
-
0
To add space between the Search and Filter buttons in the Tenants page, you can use custom CSS. This is a common UI adjustment and can be achieved by adding a margin to the button elements. For example, you can add the following CSS to your global styles (e.g., global-styles.css):
/* Add space between search and filter buttons */ .tenant-search-form .btn + .btn { margin-left: 0.5rem; }If your buttons are not wrapped in a specific class, you can target them more generally or add a custom class to the button group for more precise control.
After adding the CSS, the buttons will have the desired spacing between them.
Sources:
This response was generated by AI. If it didn’t solve your problem, feel free to post a new answer — our support team will jump in to help you soon.
Markdown supported.Copy, paste, or drag & drop images and files (max 100 MB per file, 100 MB total per post)

