From 8b1adb51c86f12cb34ce0a4f6e398f35e193b5f0 Mon Sep 17 00:00:00 2001 From: Amir Raminfar Date: Wed, 16 Oct 2024 18:50:50 -0700 Subject: [PATCH] feat: removes rounded corners in compact mode (#3332) --- assets/components/LogViewer/LogList.vue | 4 ++++ .../LogViewer/__snapshots__/EventSource.spec.ts.snap | 6 +++--- assets/components/common/Tag.vue | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/assets/components/LogViewer/LogList.vue b/assets/components/LogViewer/LogList.vue index fe5210da..9c285db9 100644 --- a/assets/components/LogViewer/LogList.vue +++ b/assets/components/LogViewer/LogList.vue @@ -97,6 +97,10 @@ useIntersectionObserver( > li { @apply py-0; } + + :deep(.tag) { + @apply rounded-none; + } } } diff --git a/assets/components/LogViewer/__snapshots__/EventSource.spec.ts.snap b/assets/components/LogViewer/__snapshots__/EventSource.spec.ts.snap index bd1bb831..718015db 100644 --- a/assets/components/LogViewer/__snapshots__/EventSource.spec.ts.snap +++ b/assets/components/LogViewer/__snapshots__/EventSource.spec.ts.snap @@ -6,7 +6,7 @@ exports[` > render html correctly > should render dates
-
+
@@ -25,7 +25,7 @@ exports[` > render html correctly > should render dates
-
+
@@ -44,7 +44,7 @@ exports[` > render html correctly > should render messag
-
+
diff --git a/assets/components/common/Tag.vue b/assets/components/common/Tag.vue index 1b1eab72..ff240e28 100644 --- a/assets/components/common/Tag.vue +++ b/assets/components/common/Tag.vue @@ -1,5 +1,5 @@