Customize Styles
Using Webfonts
@import url('https://fonts.googleapis.com/css2?family=Abel&display=swap');Customize Component Styles with CSS


Last updated
Was this helpful?
@import url('https://fonts.googleapis.com/css2?family=Abel&display=swap');

Last updated
Was this helpful?
Was this helpful?
// Use the prefix-class in your Selectors to limit the customized CSS to your Apps only.
// will have an effect for all Buttons of Lowcoder (Editor + Apps)
.button1 {
border-radius: 50px;
}
// will have an effect for all Buttons of your Lowcoder Apps only
.root-container .button1 {
border-radius: 50px;
}
// from version v2.3.2 on this class get a new name
// will have an effect for all Buttons of your Lowcoder Apps only
.lowcoder-app-canvas .button {
border-radius: 50px;
}// will apply to all Buttons in your App
.lowcoder-app-canvas .button {
border-radius: 50px;
}
// will apply to the specific Button with the name button1 in your App
.lowcoder-app-canvas .button1 {
border-radius: 50px;
}