mirror of
https://github.com/iancoleman/shamir.git
synced 2025-11-18 00:50:59 +00:00
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.
18 lines
353 B
JavaScript
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: [],
|
|
};
|