1
0
Fork 0
mirror of https://github.com/iancoleman/shamir.git synced 2025-11-18 00:50:59 +00:00
shamir/tailwind.config.js
Blender Defender eee000a312
feat: Replace Bootstrap with Tailwind CSS.
As a first step, Bootstrap 3.3.6 has been replaced entirely with Tailwind styles. Against best practice recommendations, the `form-control` class has been preserved by adding `@apply` styles. The layout has been updated to be a tab layout, so each input has more space. The styling of the error message has been updated as well.
2024-05-24 10:16:21 +02:00

18 lines
353 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{html,js}"],
theme: {
extend: {
fontFamily: {
sans: [
"sans-serif",
"Apple Color Emoji",
"Segoe UI Emoji",
"Segoe UI Symbol",
"Noto Color Emoji",
],
},
},
},
plugins: [],
};