fix(buttons): change the icon toolbar size

This commit is contained in:
Alexander Zhukov 2017-07-21 15:57:17 +03:00
parent dc5a90b270
commit 0de4e0f9ee
3 changed files with 11 additions and 0 deletions

View file

@ -64,6 +64,9 @@
<label class="btn btn-success" [class.active]="iconToolbarModel.four">
<input type="checkbox" [(ngModel)]="iconToolbarModel.four"> 4
</label>
<label class="btn btn-success" [class.active]="iconToolbarModel.five">
<input type="checkbox" [(ngModel)]="iconToolbarModel.five"> 5
</label>
</div>
</div>
</div>

View file

@ -16,6 +16,13 @@
}
}
.icon-toolbar-container {
.btn-group > .btn {
padding-left: 1.125rem;
padding-right: 1.125rem;
}
}
.icon-toolbar-container {
flex: 1;
}

View file

@ -29,5 +29,6 @@ export class ButtonGroupsComponent {
two: false,
three: true,
four: false,
five: false,
};
}