Skip to main content
Sign in
Snippets Groups Projects
Commit 25d0be8b authored by Emmanuel Raviart's avatar Emmanuel Raviart
Browse files

Merge branch 'ui-grid-cas-type' into 'master'

Nouvelle grid pour des cas types plus larges

See merge request leximpact/leximpact-socio-fiscal-ui!40
parents 36d564fb 815fd665
Branches
Tags
1 merge request!40Nouvelle grid pour des cas types plus larges
...@@ -84,7 +84,7 @@ ...@@ -84,7 +84,7 @@
} }
</script> </script>
<section class="grid grid-cols-1 lg:grid-cols-2 2xl:grid-cols-3 gap-10"> <section class="grid grid-cols-1 xl:grid-cols-2 3xl:grid-cols-3 gap-10">
{#each $testCases as situation, situationIndex} {#each $testCases as situation, situationIndex}
<TestCaseView <TestCaseView
calculationName={$calculationName} calculationName={$calculationName}
... ...
......
...@@ -5,6 +5,20 @@ const config = { ...@@ -5,6 +5,20 @@ const config = {
plugins: [require("@tailwindcss/forms")], plugins: [require("@tailwindcss/forms")],
purge: ["./src/**/*.{html,js,svelte,ts}"], purge: ["./src/**/*.{html,js,svelte,ts}"],
theme: { theme: {
screens: {
'sm': '640px',
// => @media (min-width: 640px) { ... }
'md': '768px',
// => @media (min-width: 768px) { ... }
'lg': '1024px',
// => @media (min-width: 1024px) { ... }
'xl': '1280px',
// => @media (min-width: 1280px) { ... }
'2xl': '1536px',
// => @media (min-width: 1536px) { ... }
'3xl': '2200px',
// => @media (min-width: 2200px) { ... }
},
extend: { extend: {
colors: { colors: {
black: colors.black, black: colors.black,
... ...
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment