Skip to content

Commit

Permalink
[#noissue] fix wrong ui/ux
Browse files Browse the repository at this point in the history
  • Loading branch information
BillionaireDY committed Jan 2, 2023
1 parent 61cd19d commit 9c30a8b
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@
}

.l-alarm-rules-th {
overflow-y: scroll;
display: flex;
height: 30px;
position: relative;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
display: flex;
flex-flow: row wrap;
width: 100%;
height: 100%;
}

section {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,13 @@
class="child-link-wrapper">
<div
[hidden]="!minimize"
class="child-link-title">
{{item.title}}
class="child-link-title"

>
<a *ngIf="item.path" routerLink="{{item.path}}">
{{item.title}}
</a>
<span *ngIf="!item.path">{{item.title}}</span>
</div>
<ng-container *ngFor="let childItem of item.childItems">
<div
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
font-family: 'Open Sans', sans-serif;
background-color: var(--background-default);
grid-template-columns: auto;
grid-template-rows: 48px 53px calc(100% - 101px);
grid-template-rows: 48px calc(100% - 48px);
}

.l-webhook-title {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
:host {
overflow-y: scroll;
}

li {
color: var(--text-primary);
/* height: 28px; */
Expand Down

0 comments on commit 9c30a8b

Please # to comment.