Skip to content

Commit

Permalink
style: add siabled colors
Browse files Browse the repository at this point in the history
  • Loading branch information
pirhoo committed Jul 16, 2024
1 parent b65d715 commit b42b094
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/components/Project/ProjectButton.vue
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ defineProps({
</script>

<template>
<b-button class="project-button" variant="outline-light">
<b-button class="project-button" variant="outline-light" :disabled="disabled">
<project-label :project="project" :hide-thumbnail="hideThumbnail">
<slot />
</project-label>
Expand All @@ -39,5 +39,11 @@ defineProps({
display: inline-flex;
border-color: transparent;
box-shadow: 0px 0px 2px 0 #b1aeae;
&[disabled] {
opacity: 1;
color: var(--bs-body-color);
border-color: transparent;
}
}
</style>

0 comments on commit b42b094

Please sign in to comment.