intia-theme 0.1.62 → 0.1.63
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_includes/left-right-blocks.html +2 -2
- data/_sass/_layout.scss +7 -2
- 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: 2f5108865deb066c3d99f14c443ccc98889f5d6bf51c183572ca8a90e53d8a45
|
4
|
+
data.tar.gz: 5341a689b6eb8527f545c52ae04ee6c3b722892548d60b2f6f00b9ff7db4a8ed
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c29d514c379792f7817998b215044c010434d5f68a9220704d2f7164da493742bbab23e80f0e71455c025209cbae64d95f7e6ad2ca06a171381c2a311f6cc35f
|
7
|
+
data.tar.gz: 0ac7d5150e9c004b5c4da4c6fee8ceadabefac1eabd4f93746856a9e50c03ed870ce4ff163685764f9310beb50a45bf1b959c25d79fc436118e3369561f92155
|
@@ -10,7 +10,7 @@
|
|
10
10
|
</figure>
|
11
11
|
</div>
|
12
12
|
<div class="card-content">
|
13
|
-
<h2 class="fas {{ section.icon }} fa-2x">{{ section.title
|
13
|
+
<h2 class="fas {{ section.icon }} fa-2x"><div>{{ section.title }}</div></h2>
|
14
14
|
{{ section.text | markdownify }}
|
15
15
|
|
16
16
|
<a href="{{ section.link | relative_url }}" class="button is-rounded has-text-centert is-dark {% if item.link == page.url %}is-active{% endif %}">
|
@@ -27,7 +27,7 @@
|
|
27
27
|
<img src={{section.image}} alt="placeholder" class="left">
|
28
28
|
</figure>
|
29
29
|
</div>
|
30
|
-
<h2 class="fas {{ section.icon }} fa-2x">{{ section.title
|
30
|
+
<h2 class="fas {{ section.icon }} fa-2x"><div>{{ section.title }}</div></h2>
|
31
31
|
{{ section.text | markdownify }}
|
32
32
|
<a href="{{ section.link | relative_url }}" class="button is-rounded is-dark {% if item.link == page.url %}is-active{% endif %}">
|
33
33
|
<span>{{ section.link_text }}</span>
|
data/_sass/_layout.scss
CHANGED
@@ -122,7 +122,7 @@ h2 {
|
|
122
122
|
padding-top: 0;
|
123
123
|
}
|
124
124
|
.card h2.fas {
|
125
|
-
padding-bottom:
|
125
|
+
padding-bottom: 15px;
|
126
126
|
}
|
127
127
|
|
128
128
|
// List
|
@@ -1233,4 +1233,9 @@ div.faq {
|
|
1233
1233
|
// Override fas default font
|
1234
1234
|
.fas p {
|
1235
1235
|
font-family: $family-primary;
|
1236
|
-
}
|
1236
|
+
}
|
1237
|
+
.fas div{
|
1238
|
+
display: inline;
|
1239
|
+
font-family: $family-primary;
|
1240
|
+
padding-left: 17px;
|
1241
|
+
}
|