Skip to content

Commit

Permalink
Merge pull request #31 from bluec/feature/css-fixes
Browse files Browse the repository at this point in the history
CSS fixes for hr, blockquote, and ol
  • Loading branch information
alies-dev authored Mar 12, 2024
2 parents bede7ae + ac1540a commit 09aed5a
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/js/card.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/mix-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"/js/card.js": "/js/card.js?id=656041b0c15589bc5890ab8120de6604"
"/js/card.js": "/js/card.js?id=d34a559c034dc558306530281c0d402e"
}
16 changes: 15 additions & 1 deletion resources/js/components/CardContent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,14 @@ export default {
padding-left: 30px;
}
li {
ul li {
list-style: disc;
}
ol li {
list-style: decimal;
}
h1 {
font-size: 2.5em;
}
Expand Down Expand Up @@ -111,5 +115,15 @@ export default {
padding: 0;
white-space: pre;
}
hr {
margin: 1.5rem 0;
height: 0.2rem;
background-color: #f0f0f0;
border: none;
}
blockquote {
border-left: 5px solid #f0f0f0;
padding-left: 15px;
}
}
</style>

0 comments on commit 09aed5a

Please sign in to comment.