help_center 0.0.6 → 0.0.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/app/views/layouts/help_center.html.erb +2 -2
- data/lib/help_center/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c66702dcdd38d04a609a0f9e873f8c4ba66fca9f4f296bf8d46b293ef26212ee
|
4
|
+
data.tar.gz: aaf2ce14d85b8768e7728626d554ff03b417f08ab1cd0eeacd9f6cc8cbdceae1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4b84e8f6b1a5faba5f2b16e00b74a65ed30fdd350fbce20eb0aee8c9fe7186e87077d64a4a15fb2c009bc5b6cd51a5c57895bbac46f3c50632f086c34812e151
|
7
|
+
data.tar.gz: 67b0da14fa50df5a60b850bed54151077cb74d0c27435fdb5b3b7aa83cb9f1b2694c1f4dfc224770419bfae92ca6e8d1115b79359c71625b93e17a1e3ab32be1
|
data/CHANGELOG.md
CHANGED
@@ -11,7 +11,7 @@
|
|
11
11
|
<% end %>
|
12
12
|
|
13
13
|
<div class="container mx-auto mt-2">
|
14
|
-
<div class="flex
|
14
|
+
<div class="flex help_center">
|
15
15
|
<div class="md:w-1/4 mb-4">
|
16
16
|
<div class="relative flex flex-col min-w-0 rounded break-words border bg-white border-1 border-grey-light flex-auto p-6">
|
17
17
|
<div class="support-thread-filters">
|
@@ -95,7 +95,7 @@
|
|
95
95
|
</div>
|
96
96
|
</div>
|
97
97
|
<div class="md:w-3/4 pl-4 mb-3">
|
98
|
-
<div class="relative flex flex-col min-w-0 rounded break-words bg-white flex-auto p-6">
|
98
|
+
<div class="relative flex flex-col min-w-0 rounded break-words border bg-white flex-1 flex-auto p-6 md:mx-4">
|
99
99
|
<%# Show first article by default on home pag %>
|
100
100
|
<% if current_page?(help_center_path) %>
|
101
101
|
<% if SupportCategory.all.count > 0 %>
|
data/lib/help_center/version.rb
CHANGED