You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
getcryst.al/styles/globals.scss

43 lines
634 B
SCSS

@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
html {
font-family: "Inter", sans-serif;
scroll-padding-top: 80px;
}
body {
@apply min-h-screen;
}
p {
@apply text-base;
}
h2 {
@apply text-2xl font-semibold;
}
h1 {
@apply text-4xl font-bold;
}
a {
@apply underline hover:cursor-pointer;
}
}
@for $i from 1 through 6 {
.prose h#{$i} > a {
font-weight: inherit !important;
text-decoration-line: none;
color: inherit !important;
&:hover {
text-decoration-line: underline;
}
}
}
.prose > table {
display: table !important;
}