We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 559288c commit 982838fCopy full SHA for 982838f
tailwind.config.js
@@ -66,7 +66,7 @@ export default {
66
'xl': '12px',
67
'2xl': '16px',
68
'3xl': '24px',
69
- 'full': '99999px',
+ 'full': '99999px', // TODO: use calc(infinity * 1px)
70
},
71
fontFamily: {
72
sans: 'var(--fonts-regular)',
web_src/css/base.css
@@ -18,7 +18,7 @@
18
/* other variables */
19
--border-radius: 4px;
20
--border-radius-medium: 6px;
21
- --border-radius-full: 99999px;
+ --border-radius-full: 99999px; /* TODO: use calc(infinity * 1px) */
22
--opacity-disabled: 0.55;
23
--height-loading: 16rem;
24
--min-height-textarea: 132px; /* padding + 6 lines + border = calc(1.57142em + 6lh + 2px), but lh is not fully supported */
0 commit comments