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
backpack.css is just CSS so you can easily override any of backpack.css styles just as
98
-
you would override any CSS, as in, via the rules of the cascade and specificity.
72
+
backpack.css is just CSS so you can easily override any of backpack.css styles
73
+
just as you would override any CSS, as in, via the rules of the cascade and
74
+
specificity.
99
75
100
-
For example, if you didn't want to use `system-ui` as the global `font-family`
101
-
set in `main-root.css` then simply redeclare it in your project's CSS like so:
76
+
For example, if you didn't want to use `system-ui` as the global `font-family` set in `main-root.css` then simply redeclare it in your project CSS like so:
102
77
103
78
```css
104
79
html {
105
80
font-family: serif;
106
81
}
107
82
```
108
83
109
-
As already mentioned above if you aren't needing entire modules
110
-
111
84
## Motivation
112
85
113
86
Nowadays I'm building [React](https://reactjs.org/) applications that have
114
87
highly componentised User Interfaces (UI) making use of native CSS layout
115
-
mechanisms such as
116
-
[Flexbox](https://css-tricks.com/snippets/css/a-guide-to-flexbox/) and
117
-
[Grid](https://css-tricks.com/snippets/css/complete-guide-grid/). I'm no longer
118
-
finding the need for heavy handed CSS frameworks that handle most of my UI
88
+
mechanisms such as [Flexbox](https://css-tricks.com/snippets/css/a-guide-to-flexbox/) and
89
+
[Grid](https://css-tricks.com/snippets/css/complete-guide-grid/). I'm no longer finding the need for heavy handed CSS frameworks that handle most of my UI
119
90
concerns, especially layout. Instead I build components with a smidgen of global
120
91
styles.
121
92
@@ -131,7 +102,7 @@ _Coming soon…_
131
102
132
103
## Evolution
133
104
134
-
This is the third CSS framework/library I've created. Looking at each one really
105
+
This is the third CSS framework/library I've created. Looking at each one
135
106
lets you see how UI development has evolved over the years with each iteration
136
107
getting smaller and smaller.
137
108
@@ -142,23 +113,3 @@ getting smaller and smaller.
142
113
## Browser support
143
114
144
115
_Coming soon…_
145
-
146
-
<!-- ## What it does
147
-
148
-
- Applies sensible OpenType features to select elements. For example, table
0 commit comments