perbaikan select kepotong
This commit is contained in:
parent
798babdb8a
commit
f6934579ed
|
@ -1,7 +1,9 @@
|
||||||
|
|
||||||
:host ::ng-deep .ng-select .ng-select-container {
|
:host ::ng-deep .ng-select .ng-select-container {
|
||||||
color: #ffffff !important;
|
color: #ffffff !important;
|
||||||
background-color: #252525 !important;
|
background-color: #252525 !important;
|
||||||
height: 40px !important;
|
height: 40px !important;
|
||||||
|
border-radius: 12px !important; /* Menambahkan border-radius */
|
||||||
}
|
}
|
||||||
|
|
||||||
.background-round {
|
.background-round {
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<div class="app-content content" style="background-color: #000000 !important">
|
<div class="app-content content" style="background-color: #000000 !important;">
|
||||||
<div class="content-wrapper">
|
<div class="content-wrapper">
|
||||||
<div class="content-header row mb-1">
|
<div class="content-header row mb-1">
|
||||||
<app-breadcrumb class="col-12" [breadcrumb]="breadcrumb"></app-breadcrumb>
|
<app-breadcrumb class="col-12" [breadcrumb]="breadcrumb"></app-breadcrumb>
|
||||||
|
@ -101,6 +101,15 @@
|
||||||
</section>
|
</section>
|
||||||
<section id="configuration">
|
<section id="configuration">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
|
<div class="col-12" *ngIf="filteredRows?.length === 0">
|
||||||
|
<div class="card" style="background-color: #252525;">
|
||||||
|
<div class="card-content">
|
||||||
|
<div class="card-body">
|
||||||
|
<p class="text-center" style="color: #ffffff;">No data available</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<div class="col-lg-4 col-12" *ngFor="let item of filteredRows">
|
<div class="col-lg-4 col-12" *ngFor="let item of filteredRows">
|
||||||
<div
|
<div
|
||||||
class="card"
|
class="card"
|
||||||
|
|
Loading…
Reference in New Issue