How to justify widgets to the left in responsive grid?

Hello everyone,

is it possible to apply custom CSS class to oh-grid-row component. I would like cells to use justify-content-left CSS class instead of default space-between.

I have tried to add style and class to config, but without success.

config:
  label: Overview
blocks:
  - component: oh-block
    config: {}
    slots:
      default:
        - component: oh-grid-row
          config: {}
          slots:
            default:
              - component: oh-grid-col
                config:
                  width: "100"
                  small: "50"
                  medium: "33"
                slots:
                  default:
                    - component: oh-cell
                      config:
                        title: Cell 1
              - component: oh-grid-col
                config:
                  width: "100"
                  small: "50"
                  medium: "33"
                slots:
                  default:
                    - component: oh-cell
                      config:
                        title: Cell 2
masonry: null
grid: null

Thanks in advance!

This topic was automatically closed 41 days after the last reply. New replies are no longer allowed.