-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: initial setup of button classes #48
base: main
Are you sure you want to change the base?
Conversation
|
009cad2
to
d97c9a1
Compare
stories: ["../src/**/*.mdx"], | ||
addons: ["@storybook/addon-links", "@storybook/addon-essentials"], | ||
stories: ["../src/**/*.mdx", "../src/**/*.stories.ts"], | ||
addons: ["@storybook/addon-essentials", "storybook-addon-pseudo-states"], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ist addon-links in den essentials enthalten, oder weshalb ist es rausgeflogen?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Die Links verwenden wir momentan nicht, soweit ich weiß
}; | ||
|
||
// Hovered (Button Hovered) | ||
export const HoveredStory: Story = { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Brauchen wir die Stories für die einzelnen Zustände wirklich? Ist im Storybook nicht eigentlich spannender, wie die Buttons (oder andere Komponenten) aussehen und verhalten, wenn man sie in einer Anwendung einbaut?
Meine Auffassung einer einzelnen Story wäre genrell "das ist eine Möglichkeit, wie du diese Komponente nutzen kannst". In dem Moment wird dann auch der "view code" button richtig spannend für poentielle Nutzer des design systems.
font-size: var(--hap-typography-font-size-body-small); | ||
font-weight: var(--hap-typography-font-weight-medium); | ||
letter-spacing: var(--hap-typography-letter-spacing-lg); | ||
/* has to be calculated because it's only accepted as a value of percentage */ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ich hatte da mal Probleme mit, aber nach deinem Kommentar hab ich es wieder probiert und es funktioniert mit px
No description provided.