3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-05-22 17:25:01 +00:00

dashboard: use webpack for builds; use tailwindcss instead of bulma; all sorts of tweaks

This commit is contained in:
Dragory 2019-10-10 21:58:00 +03:00
parent 804223489d
commit 89615a10c3
42 changed files with 4813 additions and 3174 deletions

View file

@ -0,0 +1,21 @@
.inline-code {
@apply inline-block;
@apply bg-gray-800;
@apply px-1;
@apply rounded;
@apply text-sm;
}
.codeblock {
@apply bg-gray-800;
@apply p-3;
@apply mb-4;
@apply rounded;
@apply text-sm;
@apply shadow-md;
& .hljs {
@apply bg-transparent;
@apply p-0;
}
}