draft.setDescription("Click to edit");
delete.setDescription("Delete draft");
VerticalLayout createBox = new VerticalLayout();
createBox.setWidth(null);
createBox.addStyleName("create");
Button create = new Button("Create New");
create.addStyleName("default");
createBox.addComponent(create);
createBox.setComponentAlignment(create, Alignment.MIDDLE_CENTER);
drafts.addComponent(createBox);