라이브러리/MUI

[MUI] 텍스트필드 모든 테두리 없애기

순코딩 2025. 12. 19. 16:15
const CommentTextField = styled(TextField)`
  width: 100%;

  /* 모든 상태에서 테두리 제거 */
  & .MuiOutlinedInput-notchedOutline {
    border: none;
  }

  & .MuiOutlinedInput-root {
    &:hover .MuiOutlinedInput-notchedOutline {
      border: none;
    }
    &.Mui-focused .MuiOutlinedInput-notchedOutline {
      border: none;
    }
    &.Mui-error .MuiOutlinedInput-notchedOutline {
      border: none;
    }
  }
  
  /* outline 제거 */
  outline: none;
`;