diff --git a/client/scss/components/_preview-panel.scss b/client/scss/components/_preview-panel.scss index 8be7187b6c..a61567e11e 100644 --- a/client/scss/components/_preview-panel.scss +++ b/client/scss/components/_preview-panel.scss @@ -198,5 +198,12 @@ width: 0; height: 0; opacity: 0; + + // Remove mask-image from radio inputs to avoid loading the default icon, + // use extra specificity to beat the default styles + &:is(input[type='radio'])::before { + content: none; + mask-image: none; + } } }