mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-04-21 11:26:15 +02:00
cf4d7d4e6c
* chore: adjust prettier config, .gitignore and use taplo to format toml files This brings the plugins-workspace repository to the same code style of the main tauri repo * format toml * ignore examples gen dir * add .vscode/extensions.json * remove packageManager field * fmt * fix audit * taplo ignore permissions autogenerated files * remove create dummy dist * fix prettier workflow * install fmt in prettier workflow --------- Co-authored-by: Lucas Nogueira <lucas@tauri.app>
62 lines
903 B
CSS
62 lines
903 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));
|
|
}
|
|
}
|
|
|
|
.sidebar-toggle {
|
|
margin-top: 0.5rem;
|
|
margin-left: 0.5rem;
|
|
}
|
|
|
|
body {
|
|
overflow: hidden;
|
|
padding: env(safe-area-inset-top) env(safe-area-inset-right)
|
|
env(safe-area-inset-bottom) env(safe-area-inset-left);
|
|
}
|
|
|
|
#sidebar,
|
|
#console {
|
|
padding-bottom: calc(env(safe-area-inset-bottom) + 24px);
|
|
}
|
|
|
|
.transparent {
|
|
background-color: transparent;
|
|
}
|