More style improvements for the user settings panel.
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Fabio Manganiello 2023-08-06 23:36:06 +02:00
parent 51f907e1b5
commit bd49e460d5
Signed by: blacklight
GPG Key ID: AD6D273C08B82EC9
1 changed files with 10 additions and 6 deletions

View File

@ -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;
}
}
</style>