Ant-Design-Of-Vue radio-group radio button removes the border and only leaves the text

Remove all border styles, including light blue shadows, as follows

  :deep(.ant-radio-button-wrapper) {
    border: none;
  }
  :deep(.ant-radio-button-wrapper:not(:first-child)::before) {
    display: none !important;
  }
  :deep(.ant-radio-button-wrapper-checked:not([class*=' ant-radio-button-wrapper-disabled']).ant-radio-button-wrapper:first-child) {
    border: 0;
  }
  :deep(.ant-radio-button-wrapper:focus-within) {
    box-shadow: 0 0 0 3px transparent !important;
  }
  :deep(.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled)) {
    border-color: transparent !important;
  }
  :deep(.ant-radio-button-wrapper:first-child) {
    border-left: none;
  }

Effect: Keep text coloring only

 

 

Guess you like

Origin blog.csdn.net/m0_46550764/article/details/126480718