Files
numstation-web/wave/docs/assets/app.scss
2023-12-22 12:35:55 +08:00

41 lines
713 B
SCSS

@tailwind base;
@tailwind components;
@tailwind utilities;
[x-cloak]{
display:none;
}
html, body {
scroll-behavior: smooth;
}
.docs{
.prose h1, .lg\:prose-xl h1{
@apply bg-clip-text text-transparent bg-gradient-to-r from-wave-500 to-purple-500 mb-5 pb-5;
}
.prose pre{
background:#1e1b47;
}
.prose p code{
font-size: 15px;
color: #3c4257;
font-weight: 500;
padding: 1px 2px;
background: #f8fafc;
border: 1px solid #e3e8ee;
border-radius: 4px;
&::before, &::after{
content:"";
}
}
.prose blockquote p{
&::before, &::after{
content: "";
}
}
}