🧮Border Radius
Paragraph supports customizing Border Radius of buttons, inputs and page elements (images, post blocks).
The theme provides two CSS variables that allow you to customize the border-radius of various elements:
--border-radius-btns-inputs
: This variable controls the border-radius for buttons and input fields.--border-radius-img-and-containers
: This variable affects the border-radius for images and other container elements such as post blocks.
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:
<style> :root { --border-radius-btns-inputs: 3px; --border-radius-img-and-containers: 3px; } </style>
Click Save
Last updated