In a DevExtreme web application all the editor widgets are relatively too big (e.g. dxCheckbox).
Can I scale down the widgets?
For now all you can do is just use css to scale down widget size.
This fiddle shows how to do it for checkbox http://jsfiddle.net/tabalinas/uhamqm9k/
Use following styles
.dx-widget {
font-size: 12px;
}
.dx-checkbox-icon {
width: 12px;
height: 12px;
}
But I heard about plans on compact theme for webapps.