mirror of
https://github.com/tauri-apps/tauri.git
synced 2026-04-03 10:11:15 +02:00
42 lines
550 B
CSS
42 lines
550 B
CSS
*:not(h1, h2, h3, h4, h5, h6) {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
font-family: 'Rubik', sans-serif;
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
width: 0.25rem;
|
|
height: 3px;
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
background: transparent;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
border-radius: 0.25rem;
|
|
}
|
|
|
|
code {
|
|
padding: 0.05rem 0.25rem;
|
|
}
|
|
|
|
code.code-block {
|
|
padding: 0.5rem;
|
|
}
|
|
|
|
#sidebar {
|
|
width: 18.75rem;
|
|
}
|
|
|
|
@media screen and (max-width: 640px) {
|
|
#sidebar {
|
|
--translate-x: -18.75rem;
|
|
transform: translateX(var(--translate-x));
|
|
}
|
|
}
|