From c2460d2f5fa50b54a3c1dc11c24781258e3cc6c9 Mon Sep 17 00:00:00 2001 From: Alain Nussbaumer Date: Sat, 17 May 2025 09:20:31 +0200 Subject: [PATCH] [web] Put specific style in the component --- web-src/src/components/ModalDialog.vue | 7 +++++++ web-src/src/mystyles.scss | 8 -------- 2 files changed, 7 insertions(+), 8 deletions(-) diff --git a/web-src/src/components/ModalDialog.vue b/web-src/src/components/ModalDialog.vue index f77346da..73aa3e9a 100644 --- a/web-src/src/components/ModalDialog.vue +++ b/web-src/src/components/ModalDialog.vue @@ -73,4 +73,11 @@ export default { max-height: calc(100vh - calc(4 * var(--bulma-navbar-height))); overflow: auto; } +.is-disabled { + cursor: not-allowed; + opacity: 0.5; + > * { + pointer-events: none; + } +} diff --git a/web-src/src/mystyles.scss b/web-src/src/mystyles.scss index 1b3ae940..0b69bd95 100644 --- a/web-src/src/mystyles.scss +++ b/web-src/src/mystyles.scss @@ -40,14 +40,6 @@ button.navbar-item { justify-content: center; } -.is-disabled { - cursor: not-allowed; - opacity: 0.5; - > * { - pointer-events: none; - } -} - .media:first-of-type { padding-top: 1rem; }