This is an automated email from the ASF dual-hosted git repository.
wusheng pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/skywalking-booster-ui.git
The following commit(s) were added to refs/heads/main by this push:
new 3cefbf1b fix: update the CSS for the event prompt to vertically center
it within the container. (#507)
3cefbf1b is described below
commit 3cefbf1bd5d588355829cbe9dd23cf2253af547e
Author: Fine0830 <[email protected]>
AuthorDate: Sat Oct 11 10:25:30 2025 +0800
fix: update the CSS for the event prompt to vertically center it within the
container. (#507)
---
src/views/dashboard/controls/Event.vue | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/src/views/dashboard/controls/Event.vue
b/src/views/dashboard/controls/Event.vue
index 48cbb1ed..ee6c3632 100644
--- a/src/views/dashboard/controls/Event.vue
+++ b/src/views/dashboard/controls/Event.vue
@@ -164,8 +164,10 @@ limitations under the License. -->
}
.event-inspector {
- text-align: center;
- line-height: 30px;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ height: 100%;
font-size: $font-size-normal;
font-weight: bold;
}