@anydigital/bricks 0.27.0-alpha.7 → 0.27.0-alpha.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/assets/bricks.css CHANGED
@@ -252,11 +252,18 @@ a[data-has-favicon] {
252
252
  /* Table of contents */
253
253
 
254
254
  [data-is-toc] {
255
+ font-size: 87.5%;
256
+
255
257
  a {
256
258
  text-decoration: none;
257
259
  }
258
260
  > ul {
259
- columns: 2;
260
- font-size: 90%;
261
+ columns: 30ch auto; /* 2 cols max for 65ch container */
261
262
  }
262
263
  }
264
+
265
+ /* @TODO: to TRICKS */
266
+
267
+ .columns {
268
+ columns: 20ch auto; /* 3 cols max for 65ch container */
269
+ }
package/bricks.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |spec|
4
4
  spec.name = "bricks"
5
- spec.version = "0.27.0-alpha.7"
5
+ spec.version = "0.27.0-alpha.8"
6
6
  spec.authors = ["Anton Staroverov"]
7
7
 
8
8
  spec.summary = "Framework-agnostic CSS utilities and single-file Liquid 'bricks' for modern web development."
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@anydigital/bricks",
3
- "version": "0.27.0-alpha.7",
3
+ "version": "0.27.0-alpha.8",
4
4
  "description": "Framework-agnostic CSS utilities and single-file Liquid 'bricks' for modern web development.",
5
5
  "style": "./src/bricks.css",
6
6
  "exports": {
package/src/_tricks.css CHANGED
@@ -75,11 +75,17 @@ a[data-has-favicon] {
75
75
 
76
76
  /* Table of contents */
77
77
  [data-is-toc] {
78
+ font-size: 87.5%;
79
+
78
80
  a {
79
81
  text-decoration: none;
80
82
  }
81
83
  > ul {
82
- columns: 2;
83
- font-size: 90%;
84
+ columns: 30ch auto; /* 2 cols max for 65ch container */
84
85
  }
85
86
  }
87
+
88
+ /* @TODO: to TRICKS */
89
+ .columns {
90
+ columns: 20ch auto; /* 3 cols max for 65ch container */
91
+ }