zappyzep/dashboard/src/style/components.pcss

31 lines
394 B
Text
Raw Normal View History

2019-10-10 22:55:31 +03:00
.link {
@apply text-blue-400;
@apply underline;
&:hover {
@apply text-blue-200;
}
}
.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;
}
}