Skip to content

Commit

Permalink
fix(ui): missing style on plugin doc for types
Browse files Browse the repository at this point in the history
  • Loading branch information
tchiotludo committed Dec 22, 2022
1 parent 4b72215 commit a985425
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion ui/src/components/plugins/Plugin.vue
Original file line number Diff line number Diff line change
Expand Up @@ -100,10 +100,11 @@
}
mark {
background: var(--success);
background: var(--bs-success);
color: var(--white);
font-size: var(--font-size-sm);
padding: 2px 8px 2px 8px;
border-radius: var(--bs-border-radius-sm);
* {
color: var(--white) !important;
Expand All @@ -125,6 +126,21 @@
}
}
h2, h3 {
margin-left: -15px;
.header-anchor {
opacity: 0;
transition: all ease 0.2s;
}
&:hover {
.header-anchor {
opacity: 1;
}
}
}
h4 {
code {
display: inline-block;
Expand Down

0 comments on commit a985425

Please sign in to comment.