Skip to content

Commit

Permalink
fix: fix endpoints config buttons (#1810)
Browse files Browse the repository at this point in the history
  • Loading branch information
Oluwadaminiola authored Oct 22, 2023
1 parent 28d548c commit cafc57e
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@
</div>
</ng-container>

<div class="flex items-center" *ngIf="shouldShowBorder < configurations.length">
<div class="flex items-center overflow-x-auto no-scrollbar" *ngIf="shouldShowBorder < configurations.length">
<ng-container *ngFor="let config of configurations; let i = index">
<ng-container *ngIf="!config.show">
<button
Expand All @@ -182,7 +182,7 @@
color="grey"
texture="light"
type="button"
[class]="'mr-24px font-normal'"
[class]="'mr-24px font-normal whitespace-nowrap'"
(click)="toggleConfigForm(config.uid)"
>
{{ config.name }}
Expand Down
16 changes: 13 additions & 3 deletions web/ui/dashboard/src/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,19 @@
@apply text-h4;
}

dialog:modal{
@apply max-w-full max-h-full;
}
dialog:modal {
@apply max-w-full max-h-full;
}

.no-scrollbar::-webkit-scrollbar {
@apply hidden;
}
.no-scrollbar {
scrollbar-width: none;
}
.no-scrollbar {
-ms-overflow-style: none;
}

.docs {
article {
Expand Down

0 comments on commit cafc57e

Please sign in to comment.