mirror of
https://github.com/legop3/MultiRoombaRover.git
synced 2026-09-15 17:12:59 -04:00
18 lines
579 B
JavaScript
18 lines
579 B
JavaScript
import containerQueries from '@tailwindcss/container-queries';
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: [
|
|
"./index.html",
|
|
"./src/**/*.{js,ts,jsx,tsx}",
|
|
],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
// Shared cards use their allocated width rather than the browser viewport to
|
|
// decide when compact layouts are necessary. Tailwind 3 does not emit the
|
|
// @container utility or @... variants unless its official plugin is enabled;
|
|
// without this, every card silently remains in its unprefixed narrow layout.
|
|
plugins: [containerQueries],
|
|
}
|