Skip to content

Commit

Permalink
docs: invert the color of the description text
Browse files Browse the repository at this point in the history
docs: use a more sensible name for the button overview story
  • Loading branch information
daenub authored Jan 23, 2024
1 parent e33865a commit a5c6d18
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/button/stories/button.stories.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ function Template({
</style>
<div
style="${inverted
? "background:var(--leu-color-accent-blue);"
? "background:var(--leu-color-accent-blue); color: var(--leu-color-white-transp-90);"
: ""}padding:40px;"
>
${component}
Expand Down Expand Up @@ -193,7 +193,7 @@ const groups = [
},
]

function TemplateDev() {
function TemplateOverview() {
return html` <style>
.codeblock {
position: relative;
Expand Down Expand Up @@ -324,8 +324,8 @@ function TemplateDev() {
)}`
}

export const Dev = TemplateDev.bind({})
Dev.argTypes = {
export const Overview = TemplateOverview.bind({})
Overview.argTypes = {
label: { table: { disable: true } },
icon: { table: { disable: true } },
iconAfter: { table: { disable: true } },
Expand Down

0 comments on commit a5c6d18

Please sign in to comment.