🧮Border Radius And Colors
--border-radius-button- this variable adjusts theborder-radiusfor buttons.--border-radius-input- this variable adjusts theborder-radiusfor inputs.--border-radius-tags- this variable adjusts theborder-radiusfor tags.--border-radius-images- this variable adjusts theborder-radiusfor images.--border-radius-blocks- this variable adjusts theborder-radiusfor various elements on the website, including sidebar widgets, post's content blocks, etc.--border-radius-header-buttons- this variable adjusts theborder-radiusfor button in header.--border-radius-tier-cards- this variable adjusts theborder-radiusfor tier-card.--border-radius-text-bg- this variable adjusts theborder-radiusfor background of text .
To customize:'
Access the Settings > Code Injection from the admin menu.
Click Open
In the provided space, specify the desired border-radius using the appropriate CSS variable. For example:
Copy
<style>
:root {
--border-radius-button: 8px;
--border-radius-input: 6px;
--border-radius-tags: 100px;
--border-radius-images: 8px;
--border-radius-blocks: 8px;
--border-radius-header-buttons: 4px;
--border-radius-tier-cards: 8px;
--border-radius-text-bg: 2px;
}
</style>Click Save
Last updated