Removing free space

I’m starting a new app with webix and angular js. My prototype must have a header docked at the top, left and right sides. I can do that easily but I’m unable to remove the little white space around the header view. I would like to achieve the same result like this sample: http://docs.webix.com/samples/03_menu/07_menu_toolbar.html.

Here my code:

app.controller("solutionController", function ($scope) {
    var header = { type:"header", template:"App header" };

    //config object
    $scope.config = {
        rows:[ header 
        ]
    };
});

It can be a default padding of document, you can remove it by adding the next css style

body { padding:0px; margin:0px; }

Also, if you are placing the “webix-ui” directly on body then Webix must add such style automatically.