diff --git a/src/components/court-cascader-modal.js b/src/components/court-cascader-modal.js index 6353251..3fb15fe 100644 --- a/src/components/court-cascader-modal.js +++ b/src/components/court-cascader-modal.js @@ -138,7 +138,7 @@ const CourtCascaderModal = ({ onClick }) => { {option.label} -
+ Min Stake = | Each vote has a stake of{" "} { tokenSymbol="PNK" /> . -
+
@@ -159,15 +159,13 @@ const CourtCascaderModal = ({ onClick }) => { {option.requiredSkills ? ( - - + + - - skills - + Required Skills
@@ -175,15 +173,13 @@ const CourtCascaderModal = ({ onClick }) => {
) : null} - - + + - - reward - + Reward
For each coherent vote you will receive{" "} @@ -379,6 +375,15 @@ const StyledCascader = styled(Cascader)` const StyledPrefixDiv = styled.div` position: absolute; transform: translate(-50%, -50%); + left: 8px; + top: 36px; + + img { + position: absolute; + right: 50%; + top: 50%; + transform: translate(50%, -50%); + } `; const StyledPolicyWrapper = styled.div` @@ -390,3 +395,9 @@ const StyledPolicyRow = styled(Row)` overflow: auto; height: 100%; `; + +const StyledMinStakeDisplay = styled.div` + font-weight: 400; + font-size: 12px; + margin: 3px 0 20px 0; +`;