zappyzep/dashboard/src/style/components.pcss

39 lines
497 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;
}
}
2020-12-13 22:11:04 +02:00
.inline-icon {
top: 0.125rem;
}
2020-12-13 23:18:19 +02:00
.sr-only-when-not-focused:not(:focus-within) {
@apply sr-only;
}