ultimate-jekyll-manager 0.0.239 → 0.0.241
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.
|
@@ -1,6 +1,17 @@
|
|
|
1
1
|
// Core Verts Styles
|
|
2
2
|
// Styles for ad units (verts) and print visibility
|
|
3
3
|
|
|
4
|
+
// ============================================
|
|
5
|
+
// Base Styles
|
|
6
|
+
// ============================================
|
|
7
|
+
|
|
8
|
+
// Custom elements default to display:inline, which collapses to 0 width
|
|
9
|
+
// when there's no text content. This causes AdSense and promo-server iframes
|
|
10
|
+
// to render into a 0-width container when the ad is already in viewport on load.
|
|
11
|
+
vert-unit {
|
|
12
|
+
display: block;
|
|
13
|
+
}
|
|
14
|
+
|
|
4
15
|
// ============================================
|
|
5
16
|
// Sidebar Vert Constraint
|
|
6
17
|
// ============================================
|
|
@@ -97,13 +97,13 @@ jobs:
|
|
|
97
97
|
- name: Run node build
|
|
98
98
|
run: |
|
|
99
99
|
UJ_BUILD_MODE=true UJ_IS_SERVER=true npx uj setup && npm run build
|
|
100
|
-
- name: Delete gh-pages branch
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
100
|
+
# - name: Delete gh-pages branch
|
|
101
|
+
# continue-on-error: true
|
|
102
|
+
# run: |
|
|
103
|
+
# curl -L \
|
|
104
|
+
# -X DELETE \
|
|
105
|
+
# -H "Authorization: token ${{ secrets.GH_TOKEN }}" \
|
|
106
|
+
# https://api.github.com/repos/$GITHUB_REPOSITORY/git/refs/heads/gh-pages
|
|
107
107
|
- name: Deploy to gh-pages
|
|
108
108
|
uses: peaceiris/actions-gh-pages@v4
|
|
109
109
|
with:
|