notegraf-web 0.1.1

The reference web frontend of Notegraf
Documentation
@import "npm:katex/dist/katex.css";
@import "npm:highlight.js/styles/github.css";
@import "npm:highlight.js/styles/github-dark.css" (prefers-color-scheme: dark);

@tailwind base;
@tailwind components;
@tailwind utilities;

@layer components {
    .ng-button {
        @apply rounded-md block px-4 py-2 font-semibold text-sm shadow-sm;
    }

    .ng-button-primary {
        @apply bg-sky-600 hover:bg-sky-700;
    }

    .ng-button-danger {
        @apply bg-red-600 hover:bg-red-700;
    }
}