mirror of
https://gitlab.com/openlp/web-remote.git
synced 2024-12-22 03:22:48 +00:00
Style alerts
This commit is contained in:
parent
19981ad608
commit
0a81fcb1b3
@ -6,17 +6,13 @@ mat-sidenav {
|
||||
}
|
||||
|
||||
.page-wrap {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
min-height: 100vh;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
min-height: 100vh;
|
||||
}
|
||||
|
||||
.content {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.selected {
|
||||
font-weight: 600;
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.footer {
|
||||
|
@ -1,6 +1,7 @@
|
||||
<h3>Send an Alert</h3>
|
||||
<mat-form-field>
|
||||
<input matInput [(ngModel)]="alert" type="text" placeholder="Alert"></mat-form-field>
|
||||
<div>
|
||||
<button mat-raised-button color="warn" (click)="onSubmit()">Send</button>
|
||||
</div>
|
||||
<form #alertForm="ngForm">
|
||||
<mat-form-field>
|
||||
<input matInput [(ngModel)]="alert" type="text" name="alert" placeholder="Alert" required>
|
||||
</mat-form-field>
|
||||
<button mat-raised-button color="primary" id="sendButton" [disabled]="!alertForm.form.valid" (click)="onSubmit()">Send</button>
|
||||
</form>
|
@ -0,0 +1,7 @@
|
||||
mat-form-field {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
#sendButton {
|
||||
width: 100%;
|
||||
}
|
Loading…
Reference in New Issue
Block a user