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

fix(tegel-styles): renaming files and folder #735

Merged
merged 2 commits into from
Aug 28, 2024
Merged
Show file tree
Hide file tree
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
11 changes: 6 additions & 5 deletions packages/styles/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,12 @@ Beside the styles, it also includes a `ag-grid-styles.css` file that serves as T
```
@tegel-styles/
├── dist/
├── ag-grid/
│ └── ag-grid-styles.css
├── customization/
│ └── ag-grid/
│ └── quartz-theme-override.css
└── foundations/
├── colors.css
├── foundation.css
├── main.css
├── grid.css
├── logotype.css
├── spacing.css
Expand All @@ -35,10 +36,10 @@ npm install @tegel-styles
## Usage

To use the styles in your project, simply import the CSS file in your main stylesheet.
Here is an exmaple of importing the foundation styles file:
Here is an exmaple of importing the main foundation file:

```css
import '@tegel-styles/dist/foundations/foundation.css';
import '@tegel-styles/dist/foundations/main.css';
```

## Contributing
Expand Down
2 changes: 1 addition & 1 deletion packages/styles/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tegel-styles",
"version": "1.0.0",
"version": "1.0.0-beta.0",
"description": "CSS styling package for Tegel Design System.",
"main": "dist/css/tegel-styles.css",
"style": "main.scss",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* AG-Grid General Overrides using Tegel Design System Variables */
/* AG-Grid General Overrides of quartz theme using Tegel Design System Variables */

/* Light mode variables */
:root {
Expand Down
Loading