[web] Put specific style in the component

This commit is contained in:
Alain Nussbaumer 2025-05-17 09:20:31 +02:00
parent f91189d93b
commit c2460d2f5f
2 changed files with 7 additions and 8 deletions

View File

@ -73,4 +73,11 @@ export default {
max-height: calc(100vh - calc(4 * var(--bulma-navbar-height))); max-height: calc(100vh - calc(4 * var(--bulma-navbar-height)));
overflow: auto; overflow: auto;
} }
.is-disabled {
cursor: not-allowed;
opacity: 0.5;
> * {
pointer-events: none;
}
}
</style> </style>

View File

@ -40,14 +40,6 @@ button.navbar-item {
justify-content: center; justify-content: center;
} }
.is-disabled {
cursor: not-allowed;
opacity: 0.5;
> * {
pointer-events: none;
}
}
.media:first-of-type { .media:first-of-type {
padding-top: 1rem; padding-top: 1rem;
} }