summaryrefslogtreecommitdiff
path: root/Userland/Applications/Browser/BrowserWindow.gml
blob: f6ec7ef1afe7b7789b1d7a6eac9321faf6c9b116 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
@GUI::Widget {
    name: "browser"
    fill_with_background_color: true

    layout: @GUI::VerticalBoxLayout {
        spacing: 2
    }

    @GUI::TabWidget {
        name: "tab_widget"
        container_padding: 0
        uniform_tabs: true
        text_alignment: "CenterLeft"
    }
}