Skip to content

Commit 09aed5a

Browse files
authored
Merge pull request #31 from bluec/feature/css-fixes
CSS fixes for hr, blockquote, and ol
2 parents bede7ae + ac1540a commit 09aed5a

File tree

3 files changed

+17
-3
lines changed

3 files changed

+17
-3
lines changed

dist/js/card.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/mix-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"/js/card.js": "/js/card.js?id=656041b0c15589bc5890ab8120de6604"
2+
"/js/card.js": "/js/card.js?id=d34a559c034dc558306530281c0d402e"
33
}

resources/js/components/CardContent.vue

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,14 @@ export default {
4444
padding-left: 30px;
4545
}
4646
47-
li {
47+
ul li {
4848
list-style: disc;
4949
}
5050
51+
ol li {
52+
list-style: decimal;
53+
}
54+
5155
h1 {
5256
font-size: 2.5em;
5357
}
@@ -111,5 +115,15 @@ export default {
111115
padding: 0;
112116
white-space: pre;
113117
}
118+
hr {
119+
margin: 1.5rem 0;
120+
height: 0.2rem;
121+
background-color: #f0f0f0;
122+
border: none;
123+
}
124+
blockquote {
125+
border-left: 5px solid #f0f0f0;
126+
padding-left: 15px;
127+
}
114128
}
115129
</style>

0 commit comments

Comments
 (0)