[components] TButton, type 추가

Detail Notes :

1. TYPES, topButton 추가
This commit is contained in:
younghoon100.park
2024-02-21 18:56:22 +09:00
parent c49901c5b6
commit b23d85fee3
2 changed files with 13 additions and 0 deletions

View File

@@ -22,6 +22,7 @@ const TYPES = {
popup: "popup",
oneDepthCategory: "oneDepthCategory",
twoDepthCategory: "twoDepthCategory",
topButton: "topButton",
};
const COLOR = {

View File

@@ -207,4 +207,16 @@
}
}
}
&.topButton {
.size(@w: 120px, @h: 120px);
border-radius: 100%;
background-image: url("../../../assets/images/btn/btn-top-nor@3x.png");
background-position: center;
background-size: contain;
&:focus {
background-image: url("../../../assets/images/btn/btn-top-foc@3x.png");
}
}
}