You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+15-1Lines changed: 15 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -108,6 +108,18 @@ The `Setup` mixin can also accept the following options:
108
108
|-----------|---------------|---------|
109
109
|`includeResets`|`true`| Include reset styles. Set to `false` if you want to use your own CSS resets. |
110
110
|`includeHelperClasses`|`true`| Adds global helper classes for CSS. All global helper classes are defined [here](https://github.com/Frontendland/webcoreui/tree/main/src/scss/global). |
111
+
| `includeElementStyles` | `true` | Adds styles for native HTML elements, such as `code`, `pre`, or `ul`.
112
+
113
+
Default component styles can also be changed by overriding the following CSS variables:
114
+
115
+
```css
116
+
:root {
117
+
--w-avatar-border: #000;
118
+
--w-rating-color: #FFF;
119
+
--w-rating-empty-color: #BBB;
120
+
--w-rating-size: 18px;
121
+
}
122
+
```
111
123
112
124
### Using Components
113
125
@@ -133,8 +145,10 @@ import { Accordion } from 'webcoreui/react'
0 commit comments