Skip to content

Commit

Permalink
brushup
Browse files Browse the repository at this point in the history
  • Loading branch information
jiyuujin committed Apr 18, 2024
1 parent 735c065 commit 962f87d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
1 change: 0 additions & 1 deletion apps/web/app/pages/code-of-conduct.vue
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,6 @@ main {
.action {
--height-button: 66px;
display: block;
height: var(--height-button);
}
Expand Down
1 change: 0 additions & 1 deletion apps/web/app/pages/privacy.vue
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,6 @@ useHead({
.back-action {
--height-button: 66px;
display: block;
height: var(--height-button);
}
Expand Down
7 changes: 4 additions & 3 deletions packages/ui/components/link/SecondaryLinkButton.vue
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@ const style = computed(() => {
return {
fontWeight: fontWeight('heading/200'),
'--primaryColor': updateColor('white'),
'--secondaryColor': updateColor('vue-blue-gradation'),
'--secondaryColor': updateColor('vue-blue'),
}
})
const iconColor = computed(() => {
if (hover.value) {
return 'white'
}
return 'vue-blue-gradation'
return 'vue-blue'
})
</script>

Expand Down Expand Up @@ -72,13 +72,14 @@ const iconColor = computed(() => {
--height-button: 66px;
position: relative;
display: block;
padding: 2px;
height: var(--height-button);
border-radius: var(--height-button);
text-decoration: none;
cursor: pointer;
background: var(--secondaryColor);
color: var(--secondaryColor);
color: var(--primaryColor);
box-shadow: 0 2px 10px rgb(53, 73, 95, 0.14);
}
.content {
Expand Down

0 comments on commit 962f87d

Please sign in to comment.