Compare commits

...

2 Commits

2 changed files with 11 additions and 1 deletions

View File

@ -178,7 +178,7 @@
}
.event-type {
.event-type__content {
background-color: #f5f5f5;
// background-color: #f5f5f5;
padding: 10px 20px;
border-radius: 6px;
.event-type__content__item {

View File

@ -69,6 +69,16 @@
//
const { menuOptions, onClickOutSide, mousePosition, handleMenuSelect } = useContextMenu();
// ctrl+
document.addEventListener(
'wheel',
function (event) {
if (event.ctrlKey) {
event.preventDefault();
}
},
{ passive: false },
);
</script>
<style lang="scss" scoped>