Skip to content

Commit

Permalink
fix: some patternhub issues (#3497)
Browse files Browse the repository at this point in the history
  • Loading branch information
nmerget authored Nov 21, 2024
1 parent 588b50f commit 8e98267
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 11 deletions.
2 changes: 1 addition & 1 deletion packages/foundations/docs/Colors.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Or if you only want a single variant e.g. **informational** you can import `@imp

In case that you're either using a bundler (recommended) or importing the CSS within your JavaScript files, please adapt this `@import` syntax accordingly.

For **SCSS** you need to use the import `@use @db-ui/foundations/build/scss/color/placeholder` in your `.scss` file, where you need to reference the specific variable.
For **SCSS** you need to use the import `@use "@db-ui/foundations/build/scss/color/placeholder"` in your `.scss` file, where you need to reference the specific variable.
Then you can use e.g. **informational** color by extending our SCSS placeholders like this: `@extend %db-informational-bg-1`.

## Dark- & Light-Mode
Expand Down
2 changes: 1 addition & 1 deletion packages/foundations/docs/FontsSizes.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ All sizes of both sets are automatically adjusted by the selected [density](./..

For **CSS** and **Tailwind** you need to use the import `@import "@db-ui/foundations/build/css/fonts/classes/all.css";` in your root `.css` file.

For **SCSS** you can use the `.css` file, or you can use a placeholder by importing `@use @db-ui/foundations/build/scss/fonts` in your `.scss` file, where you need to reference the specific font size.
For **SCSS** you can use the `.css` file, or you can use a placeholder by importing `@use "@db-ui/foundations/build/scss/fonts"` in your `.scss` file, where you need to reference the specific font size.
Then you can use e.g. `sm` font-size by extending our SCSS placeholders like this: `@extend %db-overwrite-font-size-sm`.

> **_NOTE:_** Make sure that you import the file after all other **foundation** css files, otherwise you should overwrite a specific `font-size` with the global selector
Expand Down
2 changes: 1 addition & 1 deletion packages/foundations/docs/Variables.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

For **CSS** and **Tailwind** you don't have to include a specific file, just follow the documentation for [foundations](../../foundations/readme).

For **SCSS** you need to `@use` the import `@use @db-ui/foundations/build/scss/variables` in your `.scss` file, where you want to reference the specific variable.
For **SCSS** you need to use the import `@use "@db-ui/foundations/build/scss/variables"` in your `.scss` file, where you want to reference the specific variable.

## Simple overview for advanced

Expand Down
14 changes: 6 additions & 8 deletions showcases/patternhub/styles/globals.scss
Original file line number Diff line number Diff line change
Expand Up @@ -489,15 +489,13 @@ h6 {
}

.link-containers {
& > div {
display: grid;
grid-template-areas: "previous next";
gap: variables.$db-spacing-fixed-md;
justify-content: space-between;
display: grid;
grid-template-areas: "previous next";
gap: variables.$db-spacing-fixed-md;
justify-content: space-between;

a {
text-decoration: none;
}
a {
text-decoration: none;
}

.previous-link-container,
Expand Down

0 comments on commit 8e98267

Please sign in to comment.