mirror of
https://github.com/tauri-apps/tauri.git
synced 2026-04-01 10:01:07 +02:00
51 lines
616 B
CSS
51 lines
616 B
CSS
:root {
|
|
line-height: 1.5;
|
|
}
|
|
|
|
input,
|
|
select {
|
|
min-width: 0;
|
|
}
|
|
|
|
*: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));
|
|
}
|
|
}
|