React프로젝트에 tailwind css를 적용하며 사용하던 중, Toast editor를 사용하려고 하는데 툴바 아이콘이 나타나지 않는 문제가 있었습니다.
node_modules내 tailwindcss 모듈에서 background-image가 none으로 지정되어있어 나타나지않는 문제였습니다.
이부분을 주석처리 해줌으로써 해결했습니다.
/* node_modules/tailwindcss/lib/css/preflight.css */
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/
button,
[type='button'],
[type='reset'],
[type='submit'] {
-webkit-appearance: button; /* 1 */
background-color: transparent; /* 2 */
background-image: none; /* 이 부분을 주석처리 해주면 됩니다. */
}