Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 18 additions & 1 deletion src/lib/components/singletons/TorrustIndexPost.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -257,9 +257,26 @@ cd /tmp \
color: rgba(255, 49, 0, 1);
}

ul {
display: flex;
flex-direction: column;
list-style-type: disc;
margin: 0;
padding-left: 1.5rem;
word-break: keep-all;
padding-top: 1rem;
}

ul li {
margin: 0.25rem 0;
word-break: keep-all;
}

@include for-desktop-up {
.content-preview {
overflow-y: auto;
overflow-y: scroll;
scrollbar-width: none;
-ms-overflow-style: none;
padding-top: 0rem;
}
}
Expand Down
18 changes: 17 additions & 1 deletion src/lib/components/singletons/TorrustTrackerPost.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -273,9 +273,25 @@ cd /tmp \
color: rgba(255, 49, 0, 1);
}

ul {
display: flex;
flex-direction: column;
list-style-type: disc;
margin: 0;
padding-left: 1.5rem;
padding-top: 1rem;
}

ul li {
margin: 0.25rem 0;
word-break: keep-all;
}

@include for-desktop-up {
.content-preview {
overflow-y: auto;
overflow-y: scroll;
scrollbar-width: none;
-ms-overflow-style: none;
padding-top: 0rem;
}
}
Expand Down
17 changes: 10 additions & 7 deletions src/routes/(pages)/about/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -337,13 +337,6 @@
padding-top: 2rem;
}

@include for-desktop-up {
.content-preview {
overflow-y: auto;
padding-top: 0rem;
}
}

#toc-builder-preview > h2 {
font-size: 1.8rem;
font-weight: bold;
Expand Down Expand Up @@ -378,6 +371,7 @@
margin: 0;
padding-left: 1.5rem;
word-break: keep-all;
padding-top: 1rem;
}

ul li {
Expand All @@ -399,4 +393,13 @@
img {
border-radius: 24px;
}

@include for-desktop-up {
.content-preview {
overflow-y: scroll;
scrollbar-width: none;
-ms-overflow-style: none;
padding-top: 0rem;
}
}
</style>
5 changes: 4 additions & 1 deletion src/routes/(pages)/community/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,7 @@
list-style-type: disc;
margin: 0;
padding-left: 1.5rem;
padding-top: 1rem;
}

ul li {
Expand All @@ -258,7 +259,9 @@

@include for-desktop-up {
.content-preview {
overflow-y: auto;
overflow-y: scroll;
scrollbar-width: none;
-ms-overflow-style: none;
padding-top: 0rem;
}
}
Expand Down
18 changes: 17 additions & 1 deletion src/routes/(pages)/self-host/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -128,9 +128,25 @@
color: rgba(255, 49, 0, 1);
}

ul {
display: flex;
flex-direction: column;
list-style-type: disc;
margin: 0;
padding-left: 1.5rem;
padding-top: 1rem;
}

ul li {
margin: 0.25rem 0;
word-break: keep-all;
}

@include for-desktop-up {
.content-preview {
overflow-y: auto;
overflow-y: scroll;
scrollbar-width: none;
-ms-overflow-style: none;
padding-top: 0rem;
}
}
Expand Down