@enso-ui/ui 6.2.5 → 6.2.7

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": "@enso-ui/ui",
3
- "version": "6.2.5",
3
+ "version": "6.2.7",
4
4
  "description": "Laravel Enso UI",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -1,7 +1,7 @@
1
1
  <template>
2
2
  <core-page-header>
3
3
  <template #default="{ pageTitle }">
4
- <div class="level">
4
+ <div class="level mb-3">
5
5
  <div class="level-left is-hidden-mobile">
6
6
  <div class="level-item">
7
7
  <fade>
@@ -42,10 +42,12 @@ export default {
42
42
  },
43
43
 
44
44
  created() {
45
- this.listen();
45
+ this.connect()
46
+ .then(() => this.listen());
46
47
  },
47
48
 
48
49
  methods: {
50
+ ...mapActions('websockets', ['connect']),
49
51
  ...mapMutations(['newRelease']),
50
52
  listen() {
51
53
  window.Echo.private(this.channels.appUpdates)
@@ -136,7 +136,15 @@ export default {
136
136
  }
137
137
 
138
138
  .wrapper.page-content {
139
- padding: 1.2em;
139
+ padding: 1em;
140
140
  margin-top: 0;
141
141
  }
142
+
143
+ @media screen and (max-width: 1023px) {
144
+ .wrapper.page-content {
145
+ padding: 0.4em;
146
+ margin-top: 0;
147
+ }
148
+ }
149
+
142
150
  </style>