reset-button()
버튼 요소 초기화 믹스인
용도
사용법
button, .button {
@include reset-button;
}button, .button {
user-select: none;
cursor: pointer;
}로직
참고
Last updated
버튼 요소 초기화 믹스인
button, .button {
@include reset-button;
}button, .button {
user-select: none;
cursor: pointer;
}Last updated
@mixin reset-button() {
user-select: none;
cursor: pointer;
}