-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Closed
Labels
component: dashboardteam: webappIssue belongs to the WebApp teamIssue belongs to the WebApp teamtype: improvementImproves an existing feature or existing codeImproves an existing feature or existing code
Description
Problem to solve
Following up from #12135 (comment), we need to decrease spacing between the timestamp table header and the sorting icon.
| BEFORE | AFTER |
|---|---|
![]() |
![]() |
Proposal
Change the spacing using the following snippet:
diff --git a/components/dashboard/src/teams/TeamUsage.tsx b/components/dashboard/src/teams/TeamUsage.tsx
index f78fee1f2..15349754a 100644
--- a/components/dashboard/src/teams/TeamUsage.tsx
+++ b/components/dashboard/src/teams/TeamUsage.tsx
@@ -239,7 +239,7 @@ function TeamUsage() {
>
Timestamp
<SortArrow
- className={`ml-2 h-4 w-4 my-auto ${
+ className={`ml-1 h-4 w-4 my-auto ${
isStartedTimeDescending ? "" : " transform rotate-180"
}`}
/>Metadata
Metadata
Assignees
Labels
component: dashboardteam: webappIssue belongs to the WebApp teamIssue belongs to the WebApp teamtype: improvementImproves an existing feature or existing codeImproves an existing feature or existing code

