diff --git a/platypush/backend/http/webapp/src/components/panels/Settings/Users.vue b/platypush/backend/http/webapp/src/components/panels/Settings/Users.vue index 304b83e74..83bba0362 100644 --- a/platypush/backend/http/webapp/src/components/panels/Settings/Users.vue +++ b/platypush/backend/http/webapp/src/components/panels/Settings/Users.vue @@ -318,19 +318,17 @@ export default { border-radius: 0; &:first-child { - border-radius: 1em 1em 0 0; + border-top-left-radius: 1em; + border-top-right-radius: 1em; } &:last-child { - border-radius: 0 0 1em 1em; + border-bottom-left-radius: 1em; + border-bottom-right-radius: 1em; } } } } - - :deep(.btn) { - border-radius: 1em; - } } :deep(.dropdown-container) { @@ -338,4 +336,10 @@ export default { background: none !important; } } + +:deep(.modal) { + .btn { + border-radius: 1em; + } +}