// ----- CONFIG: $UI.Layout

$this = merge({
  bgColor: #F4F6F7
}, $UI.Layout, true)

// ----- COMPONENT

.root
  height 100%
  background-color $this.bgColor
  overflow hidden

  +web()
    overflow-x hidden

// ----- JS EXPORTS

:export
  config: $this
