2021-04-14 18:08:53 +03:00
|
|
|
html, body, #___gatsby, #gatsby-focus-wrapper {
|
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
overflow: hidden
|
|
|
|
}
|
|
|
|
|
|
|
|
html:not(.touch) *:not(.default-scroll) {
|
|
|
|
scrollbar-color: #7f7f7f transparent;
|
|
|
|
scrollbar-width: thin;
|
|
|
|
|
|
|
|
&::-webkit-scrollbar {
|
|
|
|
width: 6px;
|
|
|
|
height: 6px;
|
|
|
|
margin-left: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&::-webkit-scrollbar-track {
|
|
|
|
background: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
&::-webkit-scrollbar-thumb {
|
|
|
|
background: #7f7f7f;
|
|
|
|
border-radius: 6px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// 80px offset for scroll anchors
|
|
|
|
section, .is-anchor {
|
|
|
|
margin-top: -80px;
|
|
|
|
padding-top: 80px;
|
|
|
|
}
|
|
|
|
|
|
|
|
h2, h3, h4 {
|
|
|
|
word-break: break-all;
|
|
|
|
}
|
|
|
|
|
2021-04-15 09:50:07 +03:00
|
|
|
// table scroll for mobiles
|
|
|
|
@media screen and (max-width: 640px) {
|
|
|
|
table {
|
|
|
|
overflow-x: auto;
|
|
|
|
display: block !important;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
2021-04-14 18:08:53 +03:00
|
|
|
|
2021-04-15 09:50:07 +03:00
|
|
|
table tbody {
|
|
|
|
display: table;
|
|
|
|
width: 100%;
|
|
|
|
}
|
2021-04-14 18:08:53 +03:00
|
|
|
}
|
|
|
|
|