Skip to content
Snippets Groups Projects
Select Git revision
  • 5a4776431da2cc4f64b2f049e5f7b0d49cc03433
  • main default protected
  • renovate/django-5.x
  • koma/feature/preference-polling-form
4 results

_variables.scss

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    tailwind.config.js 380 B
    /** @type {import('tailwindcss').Config} */
    module.exports = {
    	content: [
    		"./src/**/*.{js,jsx,ts,tsx}",
    	],
    	theme: {
    		extend: {
    			height: {
    				screen: "100vh"
    			},
    			fontSize: {
    				sm: '1.45rem',
    				def: '1.65rem',
    				lg: '1.8rem',
    				xl: '2rem',
    				'2xl': '1.563rem',
    				'3xl': '1.953rem',
    				'4xl': '2.441rem',
    				'5xl': '3.052rem'
    			}
    		}
    	},
    	plugins: [],
    }