More style improvements for the user settings panel.

This commit is contained in:
Fabio Manganiello 2023-08-06 23:36:06 +02:00
parent 51f907e1b5
commit bd49e460d5
Signed by untrusted user: blacklight
GPG key ID: AD6D273C08B82EC9

View file

@ -318,19 +318,17 @@ export default {
border-radius: 0; border-radius: 0;
&:first-child { &:first-child {
border-radius: 1em 1em 0 0; border-top-left-radius: 1em;
border-top-right-radius: 1em;
} }
&:last-child { &: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) { :deep(.dropdown-container) {
@ -338,4 +336,10 @@ export default {
background: none !important; background: none !important;
} }
} }
:deep(.modal) {
.btn {
border-radius: 1em;
}
}
</style> </style>