I have a card layout as below. Can anyone help If there a way for the button to not have that extra space before and after the rich text no matter what magnification or resizing of the screen is shown.
a!columnLayout( contents: { a!cardLayout( tooltip: "Only Assigned Status Tasks will be processed", contents: a!richTextDisplayField( align: "CENTER", value: { a!richTextItem( text: "ACCEPT TASKS", color: "ACCENT", style: "STRONG", ) }, ), link: a!dynamicLink( value: "ACCEPT", saveInto: local!acceptTask, showWhen: count( tointeger(local!gridSelection.selected) ) <= 50 ), style: "ACCENT" ) }, width: "NARROW" )
Discussion posts and replies are publicly visible
Instead of card layout use a buttonarraylayout containg a button label as accept task
a!buttonArrayLayout( buttons: a!buttonWidget( label: "Accept Tasks", icon: "thumbs-o-up", style: "PRIMARY", value: "ACCEPT", saveInto: local!acceptTask, showWhen: count( tointeger(local!gridSelection.selected) ) <= 50, validate: false() ))