chore: update Taiga UI and remove unnecessary styles (#2200)

* chore: update Taiga UI and remove unnecessary styles

* update workflow and package lock

---------

Co-authored-by: Lucy Cifferello <12953208+elvece@users.noreply.github.com>
This commit is contained in:
Alex Inkin
2023-03-11 01:15:38 +08:00
committed by GitHub
parent f7793976fb
commit 181b44e117
14 changed files with 95 additions and 161 deletions

View File

@@ -1,10 +1,10 @@
<div *ngIf="installed$ | async as installed" class="wrapper">
<button
*ngFor="let widget of widgets | tuiFilter: filter:installed; empty: empty"
class="tui-island tui-island_size_l"
class="button"
(click)="context.completeWith(widget)"
>
<span class="tui-island__title">{{ widget.meta.name }}</span>
{{ widget.meta.name }}
</button>
<ng-template #empty>No additional widgets found</ng-template>
</div>

View File

@@ -4,6 +4,13 @@
gap: 12px;
}
.tui-island {
.button {
background: transparent;
text-align: left;
font-size: 18px;
font-weight: bold;
border: none;
border-radius: 16px;
padding: 16px;
box-shadow: inset 0 0 0 1px var(--tui-base-03);
}