@axium/calendar 0.3.0 → 0.3.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/lib/Select.svelte CHANGED
@@ -108,7 +108,7 @@
108
108
  }
109
109
 
110
110
  &.today {
111
- border: 1px solid var(--border-accent);
111
+ border: var(--border-accent);
112
112
  }
113
113
 
114
114
  &.selected {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@axium/calendar",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "author": "James Prevett <axium@jamespre.dev>",
5
5
  "description": "Calendar for Axium",
6
6
  "funding": {
@@ -35,7 +35,7 @@
35
35
  "build": "tsc"
36
36
  },
37
37
  "peerDependencies": {
38
- "@axium/client": ">=0.14.3",
38
+ "@axium/client": ">=0.17.0",
39
39
  "@axium/core": ">=0.20.0",
40
40
  "@axium/server": ">=0.36.0",
41
41
  "@sveltejs/kit": "^2.27.3",
@@ -502,7 +502,7 @@
502
502
  position: absolute;
503
503
  left: calc(100% - 0.5em);
504
504
  width: calc(100vw - 22em);
505
- border-bottom: 1px solid var(--border-accent);
505
+ border-bottom: var(--border-accent);
506
506
  top: 50%;
507
507
  z-index: 0;
508
508
  pointer-events: none;
@@ -518,7 +518,7 @@
518
518
  .day {
519
519
  width: 100%;
520
520
  height: 100%;
521
- border-left: 1px solid var(--border-accent);
521
+ border-left: var(--border-accent);
522
522
  display: flex;
523
523
  flex-direction: column;
524
524
 
@@ -541,7 +541,7 @@
541
541
  justify-content: center;
542
542
 
543
543
  &.today {
544
- border: 1px solid var(--border-accent);
544
+ border: var(--border-accent);
545
545
  color: var(--fg-accent);
546
546
  }
547
547
  }