Skip to content

Commit aeeb50e

Browse files
author
Ajay kumar
committed
[Blog] [Ajay]: Improve styling
1 parent b40cfb5 commit aeeb50e

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

TestArena/Blog/Common/BlogImage.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141

4242
<div class="row image-header">
4343
<figure class="text-center">
44-
<img src="@ImagePath" class="img-fluid rounded mx-auto d-block my-3" width="800" alt="@Description">
44+
<img src="@ImagePath" class="img-fluid rounded mx-auto d-block my-3 border border-2 border-success" width="800" alt="@Description">
4545
<figcaption class="figure-caption">
4646
<strong>Figure @(Number > 0 ? Number.ToString() : string.Empty) :</strong> @Description
4747
</figcaption>

TestArena/Blog/PactNet/Intro/HowToSteps.razor

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,8 @@
1717
<p>Student service exposes below API:</p>
1818
<BlogImage ImagePath="/images/blog/pact/intro/Student by Id API.webp"
1919
Description="Student by Id API" Number="5" />
20+
<p>I had the solution structure as below.</p>
21+
<BlogImage ImagePath="/images/blog/pact/intro/project structure.webp" Description="Project structure"
22+
Number="1"/>
2023
</ChildContent>
2124
</Section>

TestArena/Blog/PactNet/Intro/Index.razor

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010

1111
<Section Heading="Consumer side tests:">
1212
<ChildContent>
13+
1314
<p>The very first step is to create a unit test file and initialize pact builder as shown below</p>
1415
<GithubGistSnippet Title="Pact Builder Setup" UserId="ajaysskumar" FileName="c45d40c48ea2a3e2c81719e41df6f882"/>
1516
</ChildContent>

TestArena/Blog/PactNet/Intro/Summary.razor

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
which is show in images below.</p>
2121

2222
<BlogImage ImagePath="/images/blog/pact/intro/diagram-1-success-case.webp" Description="Success case"
23-
Number="1">
24-
</BlogImage>
23+
Number="1"/>
24+
2525

2626
<p>In diagram above, a success scenario is shown in a schema based contract testing. All the tests are success as the expected fields by all the clients are available in provider’s schema.</p>
2727

0 commit comments

Comments
 (0)