Skip to content

Commit b438732

Browse files
committed
Adds blog.css file to the installer.
1 parent 2d24534 commit b438732

File tree

2 files changed

+30
-0
lines changed

2 files changed

+30
-0
lines changed

stubs/resources-site/css/blog.css

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
.blog-post-content {
2+
@apply leading-relaxed text-skin-neutral-11;
3+
}
4+
5+
.blog-post-content h1 {
6+
@apply mb-4 mt-8 text-3xl font-semibold;
7+
}
8+
9+
.blog-post-content h2 {
10+
@apply mb-4 mt-8 text-2xl font-semibold;
11+
}
12+
13+
.blog-post-content h3 {
14+
@apply mb-4 mt-8 text-xl font-semibold;
15+
}
16+
17+
.blog-post-content p {
18+
@apply mb-6 text-base leading-relaxed tracking-normal;
19+
}
20+
21+
.blog-post-content img {
22+
@apply mb-8 mt-4 rounded-lg shadow-lg;
23+
}
24+
25+
.blog-post-content a {
26+
@apply text-skin-primary-9 hover:underline;
27+
}

tests/Console/InstallCommandTest.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,4 +67,7 @@
6767
$this->assertFileExists(base_path('resources-site/js/Components/Blog/BlogToolbar.vue'));
6868
$this->assertFileExists(base_path('resources-site/js/Components/Blog/SearchInput.vue'));
6969
$this->assertFileExists(base_path('resources-site/js/Components/Blog/TagSelector.vue'));
70+
71+
// resources-site/css
72+
$this->assertFileExists(base_path('resources-site/css/blog.css'));
7073
});

0 commit comments

Comments
 (0)