π¨How to use custom css section in the app?
{
border-radius:10px;
}PreviousHow to export the fields in Order - Shopify Admin?NextHow to write your more specific css on fields?
Last updated
This custom CSS modifies the appearance of the specific input field to which the changes are being applied in the app.
Write your custom css in curly brackets: { "your css code" }
Frequently used css codes: background-color, border-radius etc. For example:
{
border-radius:10px;
}Last updated