diff options
| author | Francesco <tomaselli.fr@gmail.com> | 2024-04-23 16:38:35 +0200 | 
|---|---|---|
| committer | Francesco <tomaselli.fr@gmail.com> | 2024-04-23 16:38:35 +0200 | 
| commit | 4d5d0708aa283cda073a0e244f721af275f153ce (patch) | |
| tree | 2e8111f31b7ca883221f84a10854d26f08f34d61 /assets | |
| parent | 1ca2dbd5c8bb4cc10a023ab56d077dff9a95c101 (diff) | |
Theme Update
Diffstat (limited to 'assets')
| -rw-r--r-- | assets/css/main.css | 15 | 
1 files changed, 14 insertions, 1 deletions
| diff --git a/assets/css/main.css b/assets/css/main.css index 410c38a..7077a7a 100644 --- a/assets/css/main.css +++ b/assets/css/main.css @@ -67,6 +67,13 @@ pre {    margin-top: var(--code-margin-top);    margin-bottom: var(--code-margin-bottom);    background-color: var(--code-background) !important; +  overflow-x: auto; +  -ms-overflow-style: none; +  scrollbar-width: none; +} + +pre::-webkit-scrollbar { +  display: none;  }  code { @@ -81,11 +88,16 @@ code {    font-size: .9em;  } -/* Latex Overflow */  .MathJax {    overflow-x: auto;    overflow-y: hidden; +  -ms-overflow-style: none; +  scrollbar-width: none; +} + +.MathJax::-webkit-scrollbar { +  display: none;  }  /* Footnotes */ @@ -306,4 +318,5 @@ footer a {  .not-found div h1 {    font-size: 6rem; +  margin-bottom: 3rem;  }
\ No newline at end of file | 
