@saooti/octopus-sdk 30.0.26 → 30.0.27

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/README.md CHANGED
@@ -523,4 +523,5 @@ See [Configuration Reference](https://cli.vuejs.org/config/).
523
523
  * 30.0.23 Css + Accessibilité
524
524
  * 30.0.24 Css + Accessibilité
525
525
  * 30.0.25 Css + Accessibilité
526
- * 30.0.26 Css + Accessibilité
526
+ * 30.0.26 Css + Accessibilité
527
+ * 30.0.27 Top bar responsive
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@saooti/octopus-sdk",
3
- "version": "30.0.26",
3
+ "version": "30.0.27",
4
4
  "private": false,
5
5
  "description": "Javascript SDK for using octopus",
6
6
  "author": "Saooti",
@@ -4,7 +4,7 @@
4
4
  >
5
5
  <button
6
6
  v-if="authenticated"
7
- class="btn btn-primary m-1"
7
+ class="btn btn-primary hide-phone m-1"
8
8
  @click="goToUrl('/main/priv/backoffice')"
9
9
  >
10
10
  {{ $t('My space') }}
@@ -325,8 +325,13 @@ export default defineComponent({
325
325
  height: 2rem;
326
326
  }
327
327
  }
328
- @media (max-width: 290px) {
328
+ @media (max-width: 380px) {
329
329
  .top-bar-logo img{
330
+ height: 1rem;
331
+ }
332
+ }
333
+ @media (max-width: 290px) {
334
+ .top-bar-logo{
330
335
  display: none;
331
336
  }
332
337
  }