small fixes

This commit is contained in:
VLE2FE
2020-09-02 14:11:00 +02:00
parent cd4e2aa77b
commit 78093ce2ff
7 changed files with 26 additions and 20 deletions

View File

@ -1,7 +1,7 @@
<rb-icon-button icon="add" mode="primary" (click)="addNewUser()">New user</rb-icon-button>
<rb-icon-button icon="add" mode="primary" (click)="addNewUser()" class="space-below">New user</rb-icon-button>
<form *ngIf="newUser" #userForm="ngForm">
<form *ngIf="newUser" #userForm="ngForm" class="space-below">
<rb-form-input name="name" label="user name" appValidate="username" required [(ngModel)]="newUser.name"
#nameInput="ngModel">
<ng-template rbFormValidationMessage="failure">{{nameInput.errors.failure}}</ng-template>

View File

@ -10,3 +10,7 @@ td:last-child rb-icon-button {
width: 100%;
}
}
rb-form-select {
min-width: 150px;
}