plutonium 0.24.1 → 0.24.2
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 03aa87f0e65ffb98dfce96f4c6009672a7ceff510a565eba0cbfc226d7a94c50
|
4
|
+
data.tar.gz: af20fee6adbece0a3232f033589a6c58f230772d09e7c7b2ddb0c0415c8324e2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 986901850a137be1347b026e759c1607fdaf62bcdae83d46273f1a16ddcaafd1635f2d85c27110e1ff700705d6686b869572822ab12abcd4c7d41b4d84faaa9d
|
7
|
+
data.tar.gz: 0c3e4057ab75582c34f1ce06f849bfb78d63177816252b71042025b0bd6569efab9853001f991d2a437fe1c14d18759448aa511afee2093b022fc7af2117b902
|
@@ -11,7 +11,7 @@ module Plutonium
|
|
11
11
|
end
|
12
12
|
|
13
13
|
def main_attributes = mix(super, {
|
14
|
-
class: "flex flex-col items-center justify-center px-6 py-8 mx-auto lg:py-0"
|
14
|
+
class: "flex flex-col items-center justify-center gap-2 px-6 py-8 mx-auto lg:py-0"
|
15
15
|
})
|
16
16
|
|
17
17
|
def render_content(&)
|
@@ -25,8 +25,8 @@ module Plutonium
|
|
25
25
|
end
|
26
26
|
|
27
27
|
def render_logo
|
28
|
-
link_to root_path, class: "flex items-center text-2xl font-semibold text-gray-900 dark:text-white" do
|
29
|
-
helpers.resource_logo_tag classname: "w-24 h-24 mr-2"
|
28
|
+
link_to root_path, class: "flex items-center text-2xl font-semibold text-gray-900 dark:text-white mb-2" do
|
29
|
+
helpers.resource_logo_tag classname: "w-24 h-24 mr-2 rounded-md"
|
30
30
|
end
|
31
31
|
end
|
32
32
|
|
data/lib/plutonium/version.rb
CHANGED