@obosbbl/grunnmuren-tailwind 2.0.0-canary.7 → 2.0.0-canary.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/tailwind-base.cjs +20 -0
package/package.json
CHANGED
package/tailwind-base.cjs
CHANGED
|
@@ -333,6 +333,26 @@ module.exports = (options = {}) => {
|
|
|
333
333
|
'.description': {
|
|
334
334
|
[description]: {},
|
|
335
335
|
},
|
|
336
|
+
/** Standard black focus outline */
|
|
337
|
+
'.outline-focus': {
|
|
338
|
+
'@apply outline outline-2 outline-black': {},
|
|
339
|
+
},
|
|
340
|
+
/** Standard black focus outline with offset */
|
|
341
|
+
'.outline-focus-offset': {
|
|
342
|
+
'@apply outline-focus outline-offset-2': {},
|
|
343
|
+
},
|
|
344
|
+
/** Standard black focus outline with negative offset (inset) */
|
|
345
|
+
'.outline-focus-inset': {
|
|
346
|
+
'@apply outline-focus -outline-offset-4': {},
|
|
347
|
+
},
|
|
348
|
+
/** Standard black focus ring */
|
|
349
|
+
'.ring-focus': {
|
|
350
|
+
'@apply ring-2 ring-black': {},
|
|
351
|
+
},
|
|
352
|
+
/** Standard black focus ring with offset */
|
|
353
|
+
'.ring-focus-offset': {
|
|
354
|
+
'@apply ring-focus ring-offset-2': {},
|
|
355
|
+
},
|
|
336
356
|
});
|
|
337
357
|
}),
|
|
338
358
|
plugin(function ({ addBase }) {
|