@jrgermain/stylesheet 0.1.0 → 0.1.1

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jrgermain/stylesheet",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "A stylesheet for apps I build",
5
5
  "homepage": "https://stylesheet.jrgermain.dev",
6
6
  "author": {
@@ -58,14 +58,13 @@
58
58
  }
59
59
 
60
60
  // Put a spacer between consecutive right-aligned sections (3rd onward)
61
- &:nth-child(n + 3) {
62
- // TODO make this look legit; it looks like this just as a test
63
- &::before {
64
- content: "";
65
- height: 2rem;
66
- width: 2px;
67
- background-color: orange;
68
- }
61
+ &:nth-child(n + 3)::before {
62
+ content: "";
63
+ background-color: var(--color-outline);
64
+ height: 2rem;
65
+ width: var(--border-s);
66
+ position: relative;
67
+ right: calc(var(--space-s) / 2);
69
68
  }
70
69
  }
71
70