@spinnaker/core 0.11.2 → 0.11.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,7 +1,7 @@
1
1
  {
2
2
  "name": "@spinnaker/core",
3
3
  "license": "Apache-2.0",
4
- "version": "0.11.2",
4
+ "version": "0.11.3",
5
5
  "module": "dist/index.js",
6
6
  "typings": "dist/index.d.ts",
7
7
  "scripts": {
@@ -120,5 +120,5 @@
120
120
  "shx": "0.3.3",
121
121
  "typescript": "4.3.5"
122
122
  },
123
- "gitHead": "de4f3f2b9379e8e4ec9ab20bfe69a4e566a48cf3"
123
+ "gitHead": "67fd3038a84114b28ef578bd474d5ed88841b568"
124
124
  }
@@ -180,7 +180,7 @@ export const VersionMessage = ({ data, type, newRow = true }: IVersionMessage) =
180
180
  <>
181
181
  {newRow && <div className="flex-break sp-margin-s-top" />}
182
182
  <div className={classnames('version-message', typeProps.className)}>
183
- <Icon name={typeProps.icon} size="18px" color="black" className="sp-margin-s-right sp-margin-2xs-top" />
183
+ <Icon name={typeProps.icon} size="14px" color="black" className="sp-margin-2xs-top" />
184
184
  <div>
185
185
  <div>
186
186
  {typeProps.text} {data.by},{' '}
@@ -64,9 +64,10 @@
64
64
  color: var(--color-mineshaft);
65
65
  border-radius: 4px;
66
66
  padding: var(--s-spacing);
67
- padding-right: var(--xl-spacing);
68
- display: flex;
69
- flex-direction: row;
67
+ padding-right: var(--l-spacing);
68
+ display: grid;
69
+ grid-gap: var(--xs-spacing);
70
+ grid-template-columns: auto auto;
70
71
  align-items: flex-start;
71
72
  }
72
73