Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 프로토타입
- 구조분해할당
- react-native
- 파이어베이스로그인
- leetcode189
- React
- Next.js
- Rest
- Python
- 다리놓기
- 백준
- 파이썬
- 리액트
- JS
- 커스텀알락
- TCPvsUDP
- nvmrc
- leetcode977
- 커스텀알림
- iP
- 기초
- 자바스크립트
- yarn-berry
- nvm
- react-firebaseui
- css
- youtube iframe
- Spread
- firebaseui
- mac
Archives
- Today
- Total
JadeCode
mui button only uppercase 본문
MUI button은 자동 대문자화가 된다.
text-transform : "none",을 써서 해결하려했다.
javascript에서는 오류가 없었지만 typescript를 쓰니 오류가났다.
const ButtonStyle= {
padding: paddingStyle,
width: widthStyle,
backgroundColor: backgroundColor || `var(--main-background)`,
textTransform: "none", //오류발생
color : color,
};
return (
<Button
disabled={disabled && disabled}
variant={variants ? "text" : "contained"}
href={link && link}
type="submit"
style={ButtonStyle} //오류발생
onClick={onClick}
startIcon={icon}
>
{title}
</Button>
);
const ButtonStyle: React.CSSProperties = {
padding: paddingStyle,
width: widthStyle,
backgroundColor: buttonColor || `var(--main-background)`,
textTransform: "none",
color : color,
};
return (
<Button
disabled={disabled && disabled}
variant={variants ? "text" : "contained"}
href={link && link}
type="submit"
style={ButtonStyle}
onClick={onClick}
startIcon={icon}
>
{title}
</Button>
);
타입을 명시적으로 지정해줬더니 해결됐다.
++ css root로 설정한 부분을 가져오려고 backgroundColor : `var(--main-background)` 로 설정했다. 문자열로 지정하는 것이 포인트이다.
'개발 > 오류해결' 카테고리의 다른 글
네아로 로그인 시 발생한 오류 (0) | 2023.04.22 |
---|---|
[Next.js] 유튜브 불러오기 (0) | 2023.03.23 |
[MAC] Pycharm git clone 후 실행 안될 때 (0) | 2022.04.10 |
[MAC] 포트 사용 확인 및 닫기 (0) | 2022.02.07 |
[MAC] 숨김파일 (.으로 시작되는 파일, 도트파일) 보이기 (0) | 2021.12.11 |
Comments