diff options
author | Rémy Raes <contact@remyraes.com> | 2023-10-25 00:20:13 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-25 00:20:13 +0200 |
commit | b806158efb9bdaf88468e4c13d49c0293e64b298 (patch) | |
tree | b6c2c0b752fffb87fe26515fa3bf40fab82e17a9 /src-vue/src/components | |
parent | 8bee8f92ccbbfcca8c3384151022fc4ed9a4875a (diff) | |
download | FlightCore-b806158efb9bdaf88468e4c13d49c0293e64b298.tar.gz FlightCore-b806158efb9bdaf88468e4c13d49c0293e64b298.zip |
fix: UI bugs (#644)
Fixes two interface issues caused by leaking CSS styles
Diffstat (limited to 'src-vue/src/components')
-rw-r--r-- | src-vue/src/components/NotificationButton.vue | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src-vue/src/components/NotificationButton.vue b/src-vue/src/components/NotificationButton.vue index 4945f8c7..3835032d 100644 --- a/src-vue/src/components/NotificationButton.vue +++ b/src-vue/src/components/NotificationButton.vue @@ -74,4 +74,8 @@ export default defineComponent({ .el-alert { margin: 5px 10px 5px 5px; } + +.el-badge:deep(sup) { + transform: translate(-10px, 5px) !important; +} </style> |