Fix Nextcloud .btn-group > .btn layout

This commit is contained in:
the-djmaze 2023-05-08 14:41:45 +02:00
parent e0c21b4b85
commit 08e8a570b8

View file

@ -116,6 +116,18 @@ a.selectable::after {
border: initial !important;
}
.btn-group > .btn {
border-radius: 0;
}
.btn-group > .btn:first-child {
border-top-left-radius: var(--border-radius-pill, 3px);
border-bottom-left-radius: var(--border-radius-pill, 3px);
}
.btn-group > .btn:last-child {
border-top-right-radius: var(--border-radius-pill, 3px);
border-bottom-right-radius: var(--border-radius-pill, 3px);
}
@media print {
#body-user #header {
display: none;