@everchron/ec-shards 2.2.1 → 2.2.3

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": "@everchron/ec-shards",
3
- "version": "2.2.1",
3
+ "version": "2.2.3",
4
4
  "private": false,
5
5
  "description": "Everchron Shards UI Library",
6
6
  "repository": "https://github.com/everchron/ec-shards.git",
@@ -11,6 +11,10 @@
11
11
  .ecs-comment-list{
12
12
  > .ecs-comment{
13
13
  margin-bottom: $spacing-20;
14
+
15
+ &:last-child{
16
+ margin-bottom: 0;
17
+ }
14
18
  }
15
19
  }
16
20
  </style>
@@ -80,6 +80,8 @@
80
80
  display: flex;
81
81
  flex-direction: column;
82
82
  margin: auto;
83
+ margin-bottom: auto;
84
+ margin-top: auto;
83
85
  border: none;
84
86
  padding: 0;
85
87
  overflow: visible;
@@ -91,6 +91,7 @@
91
91
  display: flex;
92
92
  flex-direction: column;
93
93
  max-width: 100%;
94
+ min-width: 0;
94
95
  }
95
96
 
96
97
  &-table{
@@ -104,7 +104,7 @@
104
104
  @import "../mixins/svg-uri";
105
105
 
106
106
  .ecs-favorability{
107
- display: flex;
107
+ display: inline-flex;
108
108
  align-items: center;
109
109
  position: relative;
110
110
 
@@ -6,11 +6,18 @@ import { Meta } from '@storybook/addon-docs/blocks';
6
6
  Changelog
7
7
  </h1>
8
8
 
9
- ## Version 2.2.1 (4 November 2022)
9
+ ## Version 2.2.3 (7 November 2022)
10
+
11
+ ### Fixes
12
+
13
+ - Fixed pushed out sidebar in EcsIndexLayout when the content of the main canvas is larger than 100%
14
+
15
+ ## Version 2.2.2 (4 November 2022)
10
16
 
11
17
  ### Fixes
12
18
 
13
19
  - Fix broken skeleton instances introduced in 2.2.0
20
+ - Fix some general styling issues
14
21
 
15
22
  ## Version 2.2.0 (4 November 2022)
16
23