@anydigital/bricks 0.27.0-alpha.3 → 0.27.0-alpha.4

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.
@@ -43,6 +43,7 @@
43
43
  overflow-x: auto;
44
44
  -webkit-overflow-scrolling: touch; /* Smooth scroll for iOS */
45
45
 
46
+ th,
46
47
  td {
47
48
  padding-inline-start: 0;
48
49
  }
package/assets/bricks.css CHANGED
@@ -35,6 +35,14 @@ body {
35
35
  pre {
36
36
  padding: 1rem 1.5rem;
37
37
  padding-inline-end: 2rem;
38
+
39
+ code {
40
+ padding: 0;
41
+ }
42
+
43
+ @media screen and (max-width: 767px) {
44
+ border-radius: 0;
45
+ }
38
46
  }
39
47
 
40
48
  /* @import "./_prose"; */
@@ -84,6 +92,7 @@ pre {
84
92
  overflow-x: auto;
85
93
  -webkit-overflow-scrolling: touch; /* Smooth scroll for iOS */
86
94
 
95
+ th,
87
96
  td {
88
97
  padding-inline-start: 0;
89
98
  }
@@ -140,7 +149,21 @@ pre {
140
149
  }
141
150
  }
142
151
 
143
- /* @import "./_prism"; */
152
+ /* Prism.js */
153
+
154
+ .token.treeview-part {
155
+ .entry-line {
156
+ width: 2.5em !important;
157
+ opacity: 25%;
158
+ }
159
+ .entry-name:last-child {
160
+ opacity: 50%;
161
+
162
+ &::before {
163
+ display: none !important;
164
+ }
165
+ }
166
+ }
144
167
 
145
168
  /* @import "./_util"; */
146
169
 
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.3"
5
+ spec.version = "0.27.0-alpha.4"
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.3",
3
+ "version": "0.27.0-alpha.4",
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": {
@@ -30,4 +30,12 @@ body {
30
30
  pre {
31
31
  padding: 1rem 1.5rem;
32
32
  padding-inline-end: 2rem;
33
+
34
+ code {
35
+ padding: 0;
36
+ }
37
+
38
+ @media screen and (max-width: 767px) {
39
+ border-radius: 0;
40
+ }
33
41
  }
package/src/breakout.css CHANGED
@@ -43,6 +43,7 @@
43
43
  overflow-x: auto;
44
44
  -webkit-overflow-scrolling: touch; /* Smooth scroll for iOS */
45
45
 
46
+ th,
46
47
  td {
47
48
  padding-inline-start: 0;
48
49
  }
package/src/bricks.css CHANGED
@@ -6,6 +6,6 @@
6
6
  @import "./_classless";
7
7
  /* @import "./_prose"; */
8
8
  @import "./breakout";
9
- /* @import "./_prism"; */
9
+ @import "./_prism";
10
10
  /* @import "./_util"; */
11
11
  @import "./_tricks";
File without changes