mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-22 08:40:03 +01:00
c8545b9692
* html for new support pane
* add algolia search component
* polish
* docs are not old anymore
* ux improvements
* add filters
* reset active option
* styles
* email an engineer button
* fix panel title
* add checkmark to resolved questions
* add result count to tags / allow tabbing through tags
* polish
* docs links
* tooltips
* inline support form
* remove unnecessary effect
* use correct color in tooltip
* Revert "tooltips"
This reverts commit 5603a65080
.
* hook it up
* fix lockfile
* use iconinfo
* Update UI snapshots for `chromium` (2)
* Update UI snapshots for `chromium` (1)
* Update UI snapshots for `chromium` (2)
* Update UI snapshots for `chromium` (2)
* reup lockfile
* Update UI snapshots for `chromium` (1)
* fix
* use std colors (except for purple)
* Update UI snapshots for `chromium` (1)
* Update UI snapshots for `chromium` (2)
* Update UI snapshots for `chromium` (1)
* Update UI snapshots for `chromium` (1)
* Update unit.json
* Update docker-compose.dev-full.yml
* Update docker-compose.dev-full.yml
* upgrade @babel/runtime
* move to a regular dep?
* address pr feedback
* add stories
* handle arrowLeft and ArrowRight keydown
* Update UI snapshots for `chromium` (1)
---------
Co-authored-by: Eli Kinsey <eli@ekinsey.dev>
Co-authored-by: Raquel Smith <raquelmsmith@users.noreply.github.com>
Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
105 lines
3.4 KiB
JavaScript
105 lines
3.4 KiB
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
const config = {
|
|
content: ['./frontend/src/**/*.{ts,tsx}', './ee/frontend/**/*.{ts,tsx}', './frontend/src/index.html'],
|
|
important: true, // Basically this: https://sebastiandedeyne.com/why-we-use-important-with-tailwind
|
|
theme: {
|
|
colors: {
|
|
// TODO: Move all colors over to Tailwind
|
|
// Currently color utility classes are still generated with SCSS in colors.scss due to relying on our color
|
|
// CSS vars in lots of stylesheets
|
|
|
|
purple: '#B62AD9',
|
|
},
|
|
fontFamily: {
|
|
sans: [
|
|
'-apple-system',
|
|
'BlinkMacSystemFont',
|
|
'Inter',
|
|
'Segoe UI',
|
|
'Roboto',
|
|
'Helvetica Neue',
|
|
'Helvetica',
|
|
'Arial',
|
|
'sans-serif',
|
|
'Apple Color Emoji',
|
|
'Segoe UI Emoji',
|
|
'Segoe UI Symbol',
|
|
],
|
|
title: [
|
|
'MatterSQ',
|
|
'-apple-system',
|
|
'BlinkMacSystemFont',
|
|
'Inter',
|
|
'Segoe UI',
|
|
'Roboto',
|
|
'Helvetica Neue',
|
|
'Helvetica',
|
|
'Arial',
|
|
'sans-serif',
|
|
'Apple Color Emoji',
|
|
'Segoe UI Emoji',
|
|
'Segoe UI Symbol',
|
|
],
|
|
mono: ['ui-monospace', 'SFMono-Regular', 'SF Mono', 'Menlo', 'Consolas', 'Liberation Mono', 'monospace'],
|
|
},
|
|
screens: {
|
|
// Sync with vars.scss
|
|
sm: '576px',
|
|
md: '768px',
|
|
lg: '992px',
|
|
xl: '1200px',
|
|
'2xl': '1600px',
|
|
},
|
|
borderRadius: {
|
|
none: '0',
|
|
sm: '0.25rem', // Originally 0.125rem, but we're rounder
|
|
DEFAULT: '0.375rem', // Originally 0.25rem, but we're rounder - aligned with var(--radius)
|
|
lg: '0.5rem',
|
|
full: '9999px',
|
|
},
|
|
extend: {
|
|
fontSize: {
|
|
xxs: ['0.625rem', '0.75rem'], // 10px (12px of line height)
|
|
},
|
|
spacing: {
|
|
// Some additional larger widths for compatibility with our pre-Tailwind system
|
|
// Don't add new ones here, in new code just use the `w-[32rem]` style for arbitrary values
|
|
13: '3.25rem',
|
|
15: '3.75rem',
|
|
18: '4.5rem',
|
|
// All whole number values up to 18 ensured above
|
|
30: '7.5rem',
|
|
50: '12.5rem',
|
|
60: '15rem',
|
|
80: '20rem',
|
|
100: '25rem',
|
|
120: '30rem',
|
|
140: '35rem',
|
|
160: '40rem',
|
|
180: '45rem',
|
|
192: '48rem',
|
|
200: '50rem',
|
|
// All whole number values divisible by 20 up to 200 ensured above
|
|
248: '62rem',
|
|
300: '75rem',
|
|
},
|
|
minWidth: {
|
|
'1/3': '33.333333%',
|
|
},
|
|
maxWidth: {
|
|
'1/2': '50%',
|
|
},
|
|
boxShadow: {
|
|
DEFAULT: 'var(--shadow-elevation)',
|
|
},
|
|
flex: {
|
|
2: '2 2 0%',
|
|
3: '3 3 0%',
|
|
},
|
|
},
|
|
},
|
|
plugins: [require('@tailwindcss/container-queries')],
|
|
}
|
|
|
|
module.exports = config
|