Skip to content

Commit

Permalink
fix(link): apply styles to deep
Browse files Browse the repository at this point in the history
  • Loading branch information
adamdehaven committed Dec 10, 2024
1 parent b52d45f commit 84a4e9f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/components/KAlert/KAlert.vue
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,8 @@ const getAlertIcon = computed((): AlertIcon => {
.alert-content {
.alert-message {
:slotted(a) {
:slotted(a),
:deep(a) {
color: $textColor;
&:hover {
Expand Down
3 changes: 2 additions & 1 deletion src/components/KTabs/KTabs.vue
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,8 @@ watch(() => props.modelValue, (newTabHash) => {
cursor: not-allowed;
}
:slotted(a) {
:slotted(a),
:deep(a) {
color: var(--kui-color-text-neutral, $kui-color-text-neutral);
text-decoration: none;
Expand Down

0 comments on commit 84a4e9f

Please sign in to comment.