I can add responsive padding to my section like so:
{% dnd_section
padding={
'default': {
'top': 0,
'bottom': 0,
'left': 0,
'right': 0
},
'mobile': {
'top': 0,
'bottom': 0,
'left': 0,
'right': 0
}
},
full_width=true
%}
but I cannot do that for my module, eg:
{% dnd_module
styles={
padding: {
desktop: {
top: {
value: 1,
units: 'rem'
},...
},
mobile: {
top: {
value: 0.5,
units: 'rem'
}
}
}
}
%}
{% end_dnd_module %}
Doing this on the CMS side doesnt product desired results as it seems padding is the same value no matter if I swap between displays.
Is this even possible?