Skip to content

Commit 3a8bd88

Browse files
committed
bugfix: add styles missing in production build
1 parent dfdc0dc commit 3a8bd88

3 files changed

+23
-7
lines changed

_posts/2018/2018-08-05-web-application-to-search-for-requirements.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ The application supports a variety of user inputs.
139139
| Text | Contains phrase | `web api` |
140140
| Text | Contains words list | `api,performance` |
141141
| Hierarchy* | | `10.0-1`, `10.0-2.0-1` |
142-
{: align="center" }
142+
{: .m-auto }
143143

144144
Hierarchy is a special notation that establishes the connection between parent/child requirements, so when used, the application should return the list of closest parent/child requirements that are connected.
145145

_posts/2021/2021-10-15-choosing-a-selector-strategy.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ What is a selector? In terms of web automation testing, a selector refers to the
2121
| CSS | `.signIn` |
2222
| XPath | `//button[@id='submitButton']` |
2323
| Link text | `link=Sign In` |
24-
{: align="center" }
24+
{: .m-auto }
2525

2626
When it comes to deciding which selector to use for a project, there are a few key things that are usually considered to make a "good" selector:
2727
1. **Unique**: The selector should be able to uniquely identify an element on the page.

assets/css/jekyll-theme-chirpy.scss

+21-5
Original file line numberDiff line numberDiff line change
@@ -26,18 +26,18 @@
2626
* Page styles
2727
*/
2828

29-
// Back-to-top progress bar
29+
// Back-to-top progress bar
3030
#progress-circle {
3131
margin: -1px -1px;
3232
top: -2.75rem;
3333
position: relative;
3434
transform: rotate(-90deg);
3535

3636
circle {
37-
stroke: var(--toc-highlight);
38-
stroke-dasharray: 2 * 3.14 * 20;
39-
stroke-dashoffset: 2 * 3.14 * 20;
40-
transition: stroke-dashoffset 0.2s;
37+
stroke: var(--toc-highlight);
38+
stroke-dasharray: 2 * 3.14 * 20;
39+
stroke-dashoffset: 2 * 3.14 * 20;
40+
transition: stroke-dashoffset 0.2s;
4141
}
4242
}
4343

@@ -50,3 +50,19 @@ div.highlighter-rouge {
5050
max-height: 70vh;
5151
overflow-y: auto;
5252
}
53+
54+
/*
55+
* Bootstrap
56+
*/
57+
58+
.d-flex {
59+
display: flex;
60+
}
61+
62+
.justify-content-center {
63+
justify-content: center;
64+
}
65+
66+
.m-auto {
67+
margin: auto;
68+
}

0 commit comments

Comments
 (0)