Skip to content

Commit

Permalink
removed right border for the last column + ui make-up
Browse files Browse the repository at this point in the history
  • Loading branch information
furknyavuz committed Sep 1, 2021
1 parent fd73903 commit 0f13f52
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
</div>

<div class="section-column-wrapper">
<div class="section-column" *ngFor="let column of options; last as isLast; first as isFirst">
<div class="section-column" *ngFor="let column of options; last as isLast; first as isFirst"
[class.section-column-right-border]="!isLast">
<div *ngIf="column.sectionTitle" class="section-header">
<h4 [style.color]="column.sectionColor ? column.sectionColor : ''">
{{ column.sectionTitle }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
background-color: var(--background-color-alpha);
-webkit-backdrop-filter: blur(10px);
backdrop-filter: blur(10px);
overflow: hidden;
}

.dropdown-content i {
Expand Down Expand Up @@ -88,7 +89,7 @@
display: flex;
}

.section-column {
.section-column-right-border {
border-right: 0.5px dotted var(--contrast);
}

Expand Down

0 comments on commit 0f13f52

Please sign in to comment.