Compare commits
3 commits
7851abb262
...
342ebde2d4
Author | SHA1 | Date | |
---|---|---|---|
|
342ebde2d4 | ||
|
c56db7d692 | ||
|
a95920db70 |
3 changed files with 22 additions and 7 deletions
|
@ -21,7 +21,14 @@
|
||||||
// When the user clicks on the button, scroll to the top of the document
|
// When the user clicks on the button, scroll to the top of the document
|
||||||
toTopButton.addEventListener("click", toTop);
|
toTopButton.addEventListener("click", toTop);
|
||||||
function toTop() {
|
function toTop() {
|
||||||
document.body.scrollTop = 0;
|
try {
|
||||||
document.documentElement.scrollTop = 0;
|
// scrollback gracefully
|
||||||
|
window.scrollTo({top: 0, behavior: 'smooth'});
|
||||||
|
} catch (e) {
|
||||||
|
// if there is a error,return to top directly
|
||||||
|
console.error(e);
|
||||||
|
document.body.scrollTop = 0;
|
||||||
|
document.documentElement.scrollTop = 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
|
@ -193,8 +193,16 @@ const { instanceDomain, userId, extraParams = '' } = Astro.props;
|
||||||
.account-name {
|
.account-name {
|
||||||
color: #666;
|
color: #666;
|
||||||
font-size: 0.9em;
|
font-size: 0.9em;
|
||||||
|
/* fix overflow caused by long names */
|
||||||
|
word-break: break-word;
|
||||||
|
}
|
||||||
|
/* post content */
|
||||||
|
.post .content pre code {
|
||||||
|
/*this should fix code overflows*/
|
||||||
|
white-space: pre-wrap;
|
||||||
|
overflow-wrap: break-word;
|
||||||
|
word-break: normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* post actions */
|
/* post actions */
|
||||||
.post-actions {
|
.post-actions {
|
||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
|
|
|
@ -80,11 +80,11 @@ main {
|
||||||
}
|
}
|
||||||
|
|
||||||
.terminal-path {
|
.terminal-path {
|
||||||
color: var(--terminal-green);
|
background-color: var(--accent-color);
|
||||||
padding: 1rem;
|
color: var(--bg-color);
|
||||||
font-size: 1.2rem;
|
padding: 5px 10px;
|
||||||
|
font-size: 1rem;
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
border-radius: 4px;
|
|
||||||
margin-bottom: 1rem;
|
margin-bottom: 1rem;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue