Skip to content

Latest commit

 

History

History
24 lines (19 loc) · 457 Bytes

widget-style-keys.md

File metadata and controls

24 lines (19 loc) · 457 Bytes

Widget style keys

A style key is defined by structual widgets used in widget styles. Eg. in table there is key tr for row, so developer can use

//css classes
{
  cssClasses: {
    tr: "bg-gray-100";
  }
}

//inline css style
{
  cssStyle: `
.dme-w-tr{
  height: 15px;
`;
}

Common key: root - the root element of a widget

Since number of widgets is changing, see each widgets for widge style keys.