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

    layout: @GUI::VerticalBoxLayout

    @GUI::HorizontalSeparator {
        name: "top_line"
        fixed_height: 2
        visible: false
    }

    @GUI::TabWidget {
        name: "tab_widget"
        container_margins: [0]
        uniform_tabs: true
        text_alignment: "CenterLeft"
    }
}