@bettertogether/community-engine-vue 0.2.5 → 0.2.6

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
  "private": false,
3
- "version": "0.2.5",
3
+ "version": "0.2.6",
4
4
  "name": "@bettertogether/community-engine-vue",
5
5
  "description": "The Better Together Community Engine is a universal community platform",
6
6
  "author": "Better Together Community Co-op",
@@ -8,6 +8,7 @@
8
8
  :container="false"
9
9
  :variant="backgroundStyle"
10
10
  :style="headerStyle"
11
+ data-bs-theme="dark"
11
12
  >
12
13
  <div
13
14
  id="nav-inner"
@@ -70,5 +71,17 @@ const headerStyle = computed(() => {
70
71
  width: 1em;
71
72
  height: 1em;
72
73
  }
74
+
75
+ // Mobile: center nav items and don't stretch them full-width
76
+ @include media-breakpoint-down(lg) {
77
+ :deep(.navbar-collapse .navbar-nav) {
78
+ align-items: center;
79
+ padding: 0.5rem 0;
80
+ .nav-item {
81
+ width: auto;
82
+ text-align: center;
83
+ }
84
+ }
85
+ }
73
86
  }
74
87
  </style>