From 32d003c7e3dbfa9289b14ab1251f0084d0fd2a8b Mon Sep 17 00:00:00 2001 From: legonzaur Date: Mon, 6 May 2024 16:33:50 +0200 Subject: [PATCH] Add round corners to playerList popups --- components/PlayerListElement.vue | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/components/PlayerListElement.vue b/components/PlayerListElement.vue index be699a8..e35f91c 100644 --- a/components/PlayerListElement.vue +++ b/components/PlayerListElement.vue @@ -63,6 +63,9 @@ const props = defineProps() transition: .1s transform; background: white; right: 0; + border-top-right-radius: 1em; + border-bottom-right-radius: 1em; + padding-right: 1em; } .button { @@ -134,4 +137,8 @@ const props = defineProps() bottom: 0; margin: auto 0; } + +.view #contextMenuButtons { + display: none +} \ No newline at end of file