Skip to content
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

chore(cdn): add CSS grid CDN urls (carbon for ibm.com) #11680

Merged
merged 1 commit into from
Apr 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion packages/web-components/docs/carbon-cdn-style-helpers.md
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ For more details, visit: https://www.ibm.com/standards/carbon/developing/buildin

## Carbon grid

The following includes Carbon grid and all corresponding grid classes.
The following includes Carbon grid (using flex grid) and all corresponding grid classes.

```html
// SPECIFIC VERSION
Expand All @@ -259,6 +259,19 @@ The following includes Carbon grid and all corresponding grid classes.
<link rel="stylesheet" href="https://1.www.s81c.com/common/carbon/web-components/tag/next/grid.css" />
```

The following includes Carbon grid (using CSS grid) and all corresponding grid classes.

```html
// SPECIFIC VERSION
<link rel="stylesheet" href="https://1.www.s81c.com/common/carbon/web-components/version/[v2.x.y]/cssgrid.css" />

// LATEST tag
<link rel="stylesheet" href="https://1.www.s81c.com/common/carbon/web-components/tag/latest/cssgrid.css" />

// NEXT tag
<link rel="stylesheet" href="https://1.www.s81c.com/common/carbon/web-components/tag/next/cssgrid.css" />
```

[Learn more about the Carbon 2x Grid](https://carbondesignsystem.com/guidelines/2x-grid/overview)

## Carbon theme zoning classes
Expand Down
Loading