mirror of
https://github.com/immich-app/immich.git
synced 2025-05-24 01:12:58 -04:00
* feat(web): max grid row height responsive * also gallery-viewer * lint * feat(web): support long-press selection on mobile web * use svelte-gestures * fix test * Bug fix * globalThis * format * revert generator * Testing * bad merge * Fix typo/tap on thumbnail * feat: shrink header on small screens (#16909) * feat(web): shrink header on small screens * fix test * test * Fix test * Revert user-page-layout chagne * Restore icons sizes, make consistent, improve logo responsiveness * remove 4 more pix, lint * lint * chore --------- Co-authored-by: Alex Tran <alex.tran1502@gmail.com> * Revert "Testing" This reverts commit 442f11c9e1538809f9208abcdff71a58b510ca98. --------- Co-authored-by: Alex Tran <alex.tran1502@gmail.com>
77 lines
2.8 KiB
JavaScript
77 lines
2.8 KiB
JavaScript
import plugin from 'tailwindcss/plugin';
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: [
|
|
'./src/**/*.{html,js,svelte,ts}',
|
|
'./node_modules/@immich/ui/dist/**/*.{svelte,js}',
|
|
'../../ui/src/**/*.{html,js,svelte,ts}',
|
|
],
|
|
darkMode: 'class',
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
// Light Theme
|
|
'immich-primary': 'rgb(var(--immich-primary) / <alpha-value>)',
|
|
'immich-bg': 'rgb(var(--immich-bg) / <alpha-value>)',
|
|
'immich-fg': 'rgb(var(--immich-fg) / <alpha-value>)',
|
|
'immich-gray': 'rgb(var(--immich-gray) / <alpha-value>)',
|
|
'immich-error': 'rgb(var(--immich-error) / <alpha-value>)',
|
|
'immich-success': 'rgb(var(--immich-success) / <alpha-value>)',
|
|
'immich-warning': 'rgb(var(--immich-warning) / <alpha-value>)',
|
|
|
|
// Dark Theme
|
|
'immich-dark-primary': 'rgb(var(--immich-dark-primary) / <alpha-value>)',
|
|
'immich-dark-bg': 'rgb(var(--immich-dark-bg) / <alpha-value>)',
|
|
'immich-dark-fg': 'rgb(var(--immich-dark-fg) / <alpha-value>)',
|
|
'immich-dark-gray': 'rgb(var(--immich-dark-gray) / <alpha-value>)',
|
|
'immich-dark-error': 'rgb(var(--immich-dark-error) / <alpha-value>)',
|
|
'immich-dark-success': 'rgb(var(--immich-dark-success) / <alpha-value>)',
|
|
'immich-dark-warning': 'rgb(var(--immich-dark-warning) / <alpha-value>)',
|
|
|
|
primary: 'rgb(var(--immich-ui-primary) / <alpha-value>)',
|
|
light: 'rgb(var(--immich-ui-light) / <alpha-value>)',
|
|
dark: 'rgb(var(--immich-ui-dark) / <alpha-value>)',
|
|
success: 'rgb(var(--immich-ui-success) / <alpha-value>)',
|
|
danger: 'rgb(var(--immich-ui-danger) / <alpha-value>)',
|
|
warning: 'rgb(var(--immich-ui-warning) / <alpha-value>)',
|
|
info: 'rgb(var(--immich-ui-info) / <alpha-value>)',
|
|
subtle: 'rgb(var(--immich-gray) / <alpha-value>)',
|
|
},
|
|
borderColor: ({ theme }) => ({
|
|
...theme('colors'),
|
|
DEFAULT: 'rgb(var(--immich-ui-default-border) / <alpha-value>)',
|
|
}),
|
|
fontFamily: {
|
|
'immich-mono': ['Overpass Mono', 'monospace'],
|
|
},
|
|
spacing: {
|
|
18: '4.5rem',
|
|
},
|
|
screens: {
|
|
tall: { raw: '(min-height: 800px)' },
|
|
'max-2xl': { max: '1535px' },
|
|
'max-xl': { max: '1279px' },
|
|
'max-lg': { max: '1023px' },
|
|
'max-md': { max: '767px' },
|
|
'max-sm': { max: '639px' },
|
|
},
|
|
},
|
|
},
|
|
plugins: [
|
|
plugin(({ matchUtilities, theme }) => {
|
|
matchUtilities(
|
|
{
|
|
'grid-auto-fit': (value) => ({
|
|
gridTemplateColumns: `repeat(auto-fit, minmax(min(${value}, 100%), 1fr))`,
|
|
}),
|
|
'grid-auto-fill': (value) => ({
|
|
gridTemplateColumns: `repeat(auto-fill, minmax(min(${value}, 100%), 1fr))`,
|
|
}),
|
|
},
|
|
{ values: theme('width') },
|
|
);
|
|
}),
|
|
],
|
|
};
|