Skip to content
This repository has been archived by the owner on Nov 8, 2024. It is now read-only.

Commit

Permalink
Added responsive for config files
Browse files Browse the repository at this point in the history
  • Loading branch information
M committed May 24, 2023
1 parent 4dde83d commit 729660b
Showing 1 changed file with 13 additions and 10 deletions.
23 changes: 13 additions & 10 deletions widget/gp-powerbi-config/gp-powerbi-config.component.html
Original file line number Diff line number Diff line change
@@ -1,27 +1,30 @@
<div class="viewport-modal configSection">
<div class='row'>
<div class="col-xs-3 col-md-3">
<label for="Datahub URL">
<div class="col-xs-12 col-md-6">
<label class="col-md-4" for="Datahub URL">
{{'DataHub URL'}}
</label>
<input type="text" [(ngModel)]="config.datahubEndPoint">
<input class="col-md-6" type="text" [(ngModel)]="config.datahubEndPoint">
<div class="col-md-2"></div>
</div>
<div class="col-xs-1 col-md-1 col-lg-1"></div>
<div class="col-xs-3 col-md-3">
<label for="Power BI URL">
<div class="col-xs-12 col-md-6">
<label class="col-md-4" for="Power BI URL">
{{'Power BI URL'}}
</label>
<input type="text" [(ngModel)]="config.powerBIEndPoint">
<input class="col-md-6" type="text" [(ngModel)]="config.powerBIEndPoint">
<div class="col-md-2"></div>
</div>
</div>
<div class='row'>
<div class="col-xs-3 col-md-3">
<label for="Embed URL">
<div class="col-xs-12 col-md-6">
<label class="col-md-4" style="padding-right: 5%" for="Embed URL">
{{'Embed URL'}}
</label>
<input type="text" [(ngModel)]="config.embedEndPoint">
<input class="col-md-6" type="text" [(ngModel)]="config.embedEndPoint">
<div class="col-md-2"></div>
</div>
<div class="col-xs-1 col-md-1 col-lg-1"></div>
<div class="col-xs-12 col-md-1 col-lg-6"></div>
<div class="col-xs-3 col-md-3">
<button (click)="setUrlAndGetWorkspace()" class="btn btn-primary" style="margin-top: 24px;
line-height: 14px;">
Expand Down

0 comments on commit 729660b

Please sign in to comment.