Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion _data/fingerprints.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ lunr: 2.3.6
icons: 715715b9
scripts: 0f5409e4
search: b74b56ab
style: 3053b10f
style: 8039313c
2 changes: 1 addition & 1 deletion _includes/v.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{%- unless site.suppress_fingerprints -%}
?v=

{%- assign fingerprints = 'icons: 715715b9,scripts: 0f5409e4,search: b74b56ab,style: 3053b10f' | split: ',' -%}
{%- assign fingerprints = 'icons: 715715b9,scripts: 0f5409e4,search: b74b56ab,style: 8039313c' | split: ',' -%}
{%- assign found = false -%}

{%- if jekyll.environment == 'production' -%}
Expand Down
46 changes: 44 additions & 2 deletions _sass/breakpoints/_mobileup.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,53 @@ GLOBAL STYLES
***************/

html {
box-sizing: border-box;
box-sizing: border-box;
}

*, *:before, *:after {
box-sizing: inherit;
box-sizing: inherit;
}

// workaround Sass handling of @supports
@supports #{'\not selector(*::-webkit-scrollbar)'} {
html {
scrollbar-width: thin;
scrollbar-color: rgba(0, 0, 0, 0.3) transparent;
}
}

::-webkit-scrollbar {
height: 16px;
width: 16px;
}

::-webkit-scrollbar-button {
display: none;
}

::-webkit-scrollbar-corner,
::-webkit-scrollbar-track {
background-color: rgba(175,175,175,0.1);

&:hover {
background-color: rgba(175,175,175,0.2);
}
}

::-webkit-scrollbar-thumb {
background-color: rgba(0,0,0,0);
border-radius: 16px;
border: 5px solid transparent;
background-clip: padding-box;
}

:hover::-webkit-scrollbar-thumb {
background-color: rgba(175,175,175,0.6);
}

::-webkit-scrollbar-thumb:hover {
background-color: rgba(175,175,175,0.8);
border-width: 4px;
}

body {
Expand Down