Add warning below live stream key field
This commit is contained in:
parent
d988e9a2f8
commit
c29039e7c0
|
@ -14,6 +14,8 @@
|
|||
<div class="form-group">
|
||||
<label for="liveVideoStreamKey" i18n>Live stream key</label>
|
||||
<my-input-readonly-copy id="liveVideoStreamKey" [value]="streamKey"></my-input-readonly-copy>
|
||||
|
||||
<div class="form-group-description" i18n>⚠️ Never share your stream key with anyone.</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -210,6 +210,8 @@
|
|||
<div class="form-group">
|
||||
<label for="liveVideoStreamKey" i18n>Live stream key</label>
|
||||
<my-input-readonly-copy id="liveVideoStreamKey" [value]="liveVideo.streamKey"></my-input-readonly-copy>
|
||||
|
||||
<div class="form-group-description" i18n>⚠️ Never share your stream key with anyone.</div>
|
||||
</div>
|
||||
|
||||
<div class="form-group" *ngIf="isSaveReplayEnabled()">
|
||||
|
|
|
@ -323,6 +323,13 @@ table {
|
|||
}
|
||||
}
|
||||
|
||||
.form-group-description {
|
||||
@extend .text-muted;
|
||||
|
||||
font-size: 90%;
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
@media screen and (max-width: #{breakpoint(xxl)}) {
|
||||
.main-col {
|
||||
&.expanded {
|
||||
|
|
Loading…
Reference in New Issue