Skip to content

Commit

Permalink
bugfix: add styles missing in production build
Browse files Browse the repository at this point in the history
  • Loading branch information
kungfux committed Oct 26, 2024
1 parent dfdc0dc commit 3a8bd88
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ The application supports a variety of user inputs.
| Text | Contains phrase | `web api` |
| Text | Contains words list | `api,performance` |
| Hierarchy* | | `10.0-1`, `10.0-2.0-1` |
{: align="center" }
{: .m-auto }

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.

Expand Down
2 changes: 1 addition & 1 deletion _posts/2021/2021-10-15-choosing-a-selector-strategy.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ What is a selector? In terms of web automation testing, a selector refers to the
| CSS | `.signIn` |
| XPath | `//button[@id='submitButton']` |
| Link text | `link=Sign In` |
{: align="center" }
{: .m-auto }

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:
1. **Unique**: The selector should be able to uniquely identify an element on the page.
Expand Down
26 changes: 21 additions & 5 deletions assets/css/jekyll-theme-chirpy.scss
Original file line number Diff line number Diff line change
Expand Up @@ -26,18 +26,18 @@
* Page styles
*/

// Back-to-top progress bar
// Back-to-top progress bar
#progress-circle {
margin: -1px -1px;
top: -2.75rem;
position: relative;
transform: rotate(-90deg);

circle {
stroke: var(--toc-highlight);
stroke-dasharray: 2 * 3.14 * 20;
stroke-dashoffset: 2 * 3.14 * 20;
transition: stroke-dashoffset 0.2s;
stroke: var(--toc-highlight);
stroke-dasharray: 2 * 3.14 * 20;
stroke-dashoffset: 2 * 3.14 * 20;
transition: stroke-dashoffset 0.2s;
}
}

Expand All @@ -50,3 +50,19 @@ div.highlighter-rouge {
max-height: 70vh;
overflow-y: auto;
}

/*
* Bootstrap
*/

.d-flex {
display: flex;
}

.justify-content-center {
justify-content: center;
}

.m-auto {
margin: auto;
}

0 comments on commit 3a8bd88

Please sign in to comment.