Skip to content

Commit 10e9410

Browse files
committed
🙈 allow css files to be tracked in /docs directory
1 parent 768f50f commit 10e9410

8 files changed

Lines changed: 1830 additions & 0 deletions

File tree

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,11 @@
55
src/deploy.xml
66
src/manifest.xml
77
## We don't need to track css changes since sass can be auto-compiled to css on deployment
8+
# Ignore CSS files
89
*.css
10+
# But not in the /docs directory
11+
!/docs/**/*.css
12+
913
## We do not need to track changes to project.json all the time
1014
## One default user is fine for now
1115
project.json

docs/assets/templates/clean-jsdoc-theme.min.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
/** @format */
2+
3+
h1,
4+
h2,
5+
h3 {
6+
overflow-wrap: break-word;
7+
}
8+
.sidebar-title .image {
9+
width: 2vw;
10+
}
11+
12+
.sidebar-title .image img {
13+
width: 100%;
14+
}
15+
16+
.sidebar-title .image,
17+
.sidebar-title .text {
18+
display: inline-block;
19+
vertical-align: bottom;
20+
}
21+
22+
.sidebar-items-container {
23+
margin-top: 3rem !important;
24+
}
25+
.sidebar-section-children {
26+
overflow-wrap: break-word;
27+
}

docs/private/jsDocStyle.css

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
/** @format */
2+
3+
h1,
4+
h2,
5+
h3 {
6+
overflow-wrap: break-word;
7+
}
8+
.sidebar-title .image {
9+
width: 2vw;
10+
}
11+
12+
.sidebar-title .image img {
13+
width: 100%;
14+
}
15+
16+
.sidebar-title .image,
17+
.sidebar-title .text {
18+
display: inline-block;
19+
vertical-align: bottom;
20+
}
21+
22+
.sidebar-items-container {
23+
margin-top: 3rem !important;
24+
}
25+
.sidebar-section-children {
26+
overflow-wrap: break-word;
27+
}

0 commit comments

Comments
 (0)