Missing design for DynamicTable

I am using DynamicTable in Forge Custom UI app, works fine so far, but design is very basic, guess CSS styling is missing. See screenshot below.

What am I missing? I have import '@atlaskit/css-reset'; in App.js, but guess there is more I need to do?

I can answer my own question. To get proper styling for Atlaskit components, you need to add styles: unsafe-inline to the manifest.yml

permissions:
  scopes:
    - ...
  content:
    styles:
      - unsafe-inline    
1 Like