Skip to content

Commit

Permalink
fix(tailwind-config): remove ods-size dependency (#14098)
Browse files Browse the repository at this point in the history
These css variables doesn't exist anymore in ODS v18.
This PR replaced with their actual value from ODS v17

Signed-off-by: Tristan WAGNER <[email protected]>
  • Loading branch information
tristanwagner authored Nov 15, 2024
1 parent 39a3305 commit 6e5a276
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions packages/manager/core/tailwind-config/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@ const config = {
extend: {
spacing: {
0: '0',
1: 'var(--ods-size-01)',
2: 'var(--ods-size-02)',
3: 'var(--ods-size-03)',
4: 'var(--ods-size-04)',
5: 'var(--ods-size-05)',
6: 'var(--ods-size-06)',
7: 'var(--ods-size-07)',
8: 'var(--ods-size-08)',
9: 'var(--ods-size-09)',
10: 'var(--ods-size-10)',
11: 'var(--ods-size-11)',
1: '0.0625rem',
2: '0.125rem',
3: '0.25rem',
4: '0.5rem',
5: '0.75rem',
6: '1rem',
7: '1.25rem',
8: '1.5rem',
9: '2rem',
10: '2.5rem',
11: '3rem',
},
},
screens: {
Expand Down

0 comments on commit 6e5a276

Please sign in to comment.