@licklist/design 0.78.5-dev.43 → 0.78.5-dev.46

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (75) hide show
  1. package/dist/index.d.ts +1 -0
  2. package/dist/index.d.ts.map +1 -1
  3. package/dist/index.js +4 -0
  4. package/dist/v2/components/Alert/Alert.scss.js +1 -1
  5. package/dist/v2/components/Button/Button.scss.js +1 -1
  6. package/dist/v2/components/Checkbox/Checkbox.scss.js +1 -1
  7. package/dist/v2/components/FormField/FormField.scss.js +1 -1
  8. package/dist/v2/components/NewPageHeader/NewPageHeader.scss.js +1 -1
  9. package/dist/v2/components/Select/Select.scss.js +1 -1
  10. package/dist/v2/components/WYSIWYGEditor/Icons.d.ts +0 -3
  11. package/dist/v2/components/WYSIWYGEditor/Icons.d.ts.map +1 -1
  12. package/dist/v2/components/WYSIWYGEditor/Icons.js +2 -41
  13. package/dist/v2/components/WYSIWYGEditor/WYSIWYGEditor.d.ts.map +1 -1
  14. package/dist/v2/components/WYSIWYGEditor/WYSIWYGEditor.js +39 -42
  15. package/dist/v2/components/WYSIWYGEditor/WYSIWYGEditor.scss.js +1 -1
  16. package/dist/v2/{navigation/icons → icons}/index.d.ts +6 -0
  17. package/dist/v2/icons/index.d.ts.map +1 -0
  18. package/dist/v2/icons/index.js +115 -0
  19. package/dist/v2/index.d.ts +3 -1
  20. package/dist/v2/index.d.ts.map +1 -1
  21. package/dist/v2/navigation/DashboardLayout/TopNavigation.scss.js +1 -1
  22. package/dist/v2/pages/Settings/SettingsPage.d.ts +13 -0
  23. package/dist/v2/pages/Settings/SettingsPage.d.ts.map +1 -0
  24. package/dist/v2/pages/Settings/SettingsPage.js +88 -0
  25. package/dist/v2/pages/Settings/SettingsPage.scss.js +6 -0
  26. package/dist/v2/pages/Settings/SettingsTabs.d.ts +14 -0
  27. package/dist/v2/pages/Settings/SettingsTabs.d.ts.map +1 -0
  28. package/dist/v2/pages/Settings/SettingsTabs.js +29 -0
  29. package/dist/v2/pages/Settings/SettingsTabs.scss.js +6 -0
  30. package/dist/v2/pages/Settings/components/SidebarCustomisation.d.ts +20 -0
  31. package/dist/v2/pages/Settings/components/SidebarCustomisation.d.ts.map +1 -0
  32. package/dist/v2/pages/Settings/components/SidebarCustomisation.js +276 -0
  33. package/dist/v2/pages/Settings/components/SidebarCustomisation.scss.js +6 -0
  34. package/dist/v2/pages/Settings/components/SidebarNavItem.d.ts +19 -0
  35. package/dist/v2/pages/Settings/components/SidebarNavItem.d.ts.map +1 -0
  36. package/dist/v2/pages/Settings/components/SidebarNavItem.js +41 -0
  37. package/dist/v2/pages/Settings/components/SidebarNavItem.scss.js +6 -0
  38. package/dist/v2/pages/Settings/components/index.d.ts +5 -0
  39. package/dist/v2/pages/Settings/components/index.d.ts.map +1 -0
  40. package/dist/v2/pages/Settings/index.d.ts +7 -0
  41. package/dist/v2/pages/Settings/index.d.ts.map +1 -0
  42. package/dist/v2/styles/components/Button.scss +3 -3
  43. package/dist/v2/styles/form/NewInput.scss +33 -21
  44. package/dist/v2/styles/form/NewInput.scss.js +1 -1
  45. package/dist/v2/styles/tokens/_colors.scss +1 -1
  46. package/package.json +3 -3
  47. package/src/index.ts +1 -0
  48. package/src/v2/components/Checkbox/Checkbox.scss +28 -13
  49. package/src/v2/components/FormField/FormField.scss +9 -9
  50. package/src/v2/components/NewPageHeader/NewPageHeader.scss +12 -0
  51. package/src/v2/components/Select/Select.scss +5 -5
  52. package/src/v2/components/WYSIWYGEditor/Icons.tsx +1 -18
  53. package/src/v2/components/WYSIWYGEditor/WYSIWYGEditor.scss +50 -32
  54. package/src/v2/components/WYSIWYGEditor/WYSIWYGEditor.tsx +48 -35
  55. package/src/v2/icons/index.tsx +105 -0
  56. package/src/v2/index.ts +10 -2
  57. package/src/v2/navigation/DashboardLayout/TopNavigation.scss +1 -0
  58. package/src/v2/pages/Settings/SettingsContentPlaceholder.scss +24 -0
  59. package/src/v2/pages/Settings/SettingsPage.scss +52 -0
  60. package/src/v2/pages/Settings/SettingsPage.tsx +46 -0
  61. package/src/v2/pages/Settings/SettingsTabs.scss +44 -0
  62. package/src/v2/pages/Settings/SettingsTabs.tsx +36 -0
  63. package/src/v2/pages/Settings/components/SidebarCustomisation.scss +150 -0
  64. package/src/v2/pages/Settings/components/SidebarCustomisation.stories.tsx +48 -0
  65. package/src/v2/pages/Settings/components/SidebarCustomisation.tsx +166 -0
  66. package/src/v2/pages/Settings/components/SidebarNavItem.scss +76 -0
  67. package/src/v2/pages/Settings/components/SidebarNavItem.stories.tsx +50 -0
  68. package/src/v2/pages/Settings/components/SidebarNavItem.tsx +52 -0
  69. package/src/v2/pages/Settings/components/index.ts +5 -0
  70. package/src/v2/pages/Settings/index.ts +8 -0
  71. package/src/v2/styles/components/Button.scss +3 -3
  72. package/src/v2/styles/form/NewInput.scss +33 -21
  73. package/src/v2/styles/tokens/_colors.scss +1 -1
  74. package/dist/v2/navigation/icons/index.d.ts.map +0 -1
  75. package/src/v2/navigation/icons/index.tsx +0 -72
@@ -9,19 +9,19 @@
9
9
  width: 100%;
10
10
 
11
11
  &__label {
12
- font-family: var(--font-family-sans, 'Geist', sans-serif), serif;
13
- font-size: 13px;
12
+ font-family: var(--font-family-sans, 'Geist', sans-serif);
13
+ font-size: 15px;
14
14
  font-style: normal;
15
- font-weight: 500;
16
- line-height: 16px; /* 123.077% */
15
+ font-weight: 600;
16
+ line-height: 20px;
17
17
  color: var(--label-primary, #121E52);
18
18
 
19
19
  }
20
20
 
21
21
  &__label-optional {
22
- font-family: var(--font-family-sans, 'Geist', sans-serif), serif;
22
+ font-family: var(--font-family-sans, 'Geist', sans-serif);
23
23
  font-size: var(--text-xs-size, 11px);
24
- font-weight: var(--heading-h6-weight, 500);
24
+ font-weight: 400;
25
25
  line-height: var(--text-xs-line, 14px);
26
26
  color: var(--labels-main-label-secondary, #626a90);
27
27
  text-align: right;
@@ -36,9 +36,9 @@
36
36
  }
37
37
 
38
38
  &__input {
39
- font-family: var(--font-family-sans, 'Geist', sans-serif), serif;
40
- font-size: var(--text-sm-size, 13px);
41
- line-height: var(--text-sm-line, 16px);
39
+ font-family: var(--font-family-sans, 'Geist', sans-serif);
40
+ font-size: var(--text-regular-size, 15px);
41
+ line-height: var(--text-regular-line, 20px);
42
42
  flex: 1 0 0;
43
43
  background-color: var(--surfaces-main-background-secondary);
44
44
  border: 2px solid var(--border-primary);
@@ -49,6 +49,10 @@
49
49
  width: 100%;
50
50
  transition: all 0.2s ease;
51
51
 
52
+ @media (max-width: 768px) {
53
+ font-size: 16px;
54
+ }
55
+
52
56
  &:focus {
53
57
  outline: none;
54
58
  border-color: var(--border-selected, #6200EE);
@@ -61,9 +65,9 @@
61
65
  }
62
66
 
63
67
  &__textarea {
64
- font-family: var(--font-family-sans, 'Geist', sans-serif), serif;
65
- font-size: var(--text-sm-size, 13px);
66
- line-height: var(--text-sm-line, 16px);
68
+ font-family: var(--font-family-sans, 'Geist', sans-serif);
69
+ font-size: var(--text-regular-size, 15px);
70
+ line-height: var(--text-regular-line, 20px);
67
71
  color: var(--labels-main-label-primary, #121e52);
68
72
  background-color: var(--surfaces-main-background-secondary, #f8f8fa);
69
73
  border: 1px solid var(--borders-main-border-primary, #e8e9ef);
@@ -74,6 +78,10 @@
74
78
  resize: vertical;
75
79
  transition: all 0.2s ease;
76
80
 
81
+ @media (max-width: 768px) {
82
+ font-size: 16px;
83
+ }
84
+
77
85
  &:focus {
78
86
  outline: none;
79
87
  border-color: var(--border-selected, #6200EE);
@@ -98,10 +106,14 @@
98
106
  flex: 1;
99
107
  border: none;
100
108
  background: transparent;
101
- font-family: var(--font-family-sans, 'Geist', sans-serif), serif;
102
- font-size: var(--text-sm-size, 13px);
103
- line-height: var(--text-sm-line, 16px);
104
- color: var(--labels-main-label-primary, #121e52);
109
+ font-family: var(--font-family-sans, 'Geist', sans-serif);
110
+ font-size: var(--text-regular-size, 15px);
111
+ line-height: var(--text-regular-line, 20px);
112
+ color: var(--label-primary);
113
+
114
+ @media (max-width: 768px) {
115
+ font-size: 16px;
116
+ }
105
117
 
106
118
  &:focus {
107
119
  outline: none;
@@ -130,7 +142,7 @@
130
142
  border: 2px solid var(--borders-main-border-primary, #e8e9ef);
131
143
  border-radius: var(--radius-md, 4px);
132
144
  text-align: center;
133
- font-family: var(--font-family-sans, 'Geist', sans-serif), serif;
145
+ font-family: var(--font-family-sans, 'Geist', sans-serif);
134
146
  font-size: var(--text-lg-size, 18px);
135
147
  font-weight: var(--heading-h3-weight, 600);
136
148
  color: var(--labels-main-label-primary, #121e52);
@@ -144,17 +156,17 @@
144
156
  }
145
157
 
146
158
  &__helper-text {
147
- font-family: var(--font-family-sans, 'Geist', sans-serif), serif;
148
- font-size: 13px;
159
+ font-family: var(--font-family-sans, 'Geist', sans-serif);
160
+ font-size: var(--text-regular-size, 15px);
149
161
  font-style: normal;
150
162
  font-weight: 400;
151
- line-height: 16px;
163
+ line-height: var(--text-regular-line, 20px);
152
164
  margin-top: 2px;
153
165
  color: var(--label-secondary, #626A90);
154
166
  }
155
167
 
156
168
  &__error-text {
157
- font-family: var(--font-family-sans, 'Geist', sans-serif), serif;
169
+ font-family: var(--font-family-sans, 'Geist', sans-serif);
158
170
  font-size: 11px;
159
171
  font-style: normal;
160
172
  font-weight: 400;
@@ -1,6 +1,6 @@
1
1
  import styleInject from '/opt/atlassian/pipelines/agent/build/node_modules/style-inject/dist/style-inject.es.js';
2
2
 
3
- var css_248z = ".new-form-input{align-items:flex-start;align-self:stretch;display:flex;flex-direction:column;gap:var(--spacing-sm);width:100%}.new-form-input__label{color:var(--label-primary,#121e52);font-size:13px;font-style:normal;font-weight:500;line-height:16px}.new-form-input__label,.new-form-input__label-optional{font-family:var(--font-family-sans,\"Geist\",sans-serif),serif}.new-form-input__label-optional{color:var(--labels-main-label-secondary,#626a90);font-size:var(--text-xs-size,11px);font-weight:var(--heading-h6-weight,500);line-height:var(--text-xs-line,14px);text-align:right}.new-form-input__label-row{align-items:center;display:flex;gap:var(--spacing-reg,16px);justify-content:space-between;width:100%}.new-form-input__input{background-color:var(--surfaces-main-background-secondary);background:var(--surface-secondary);border:2px solid var(--border-primary);border-radius:var(--radius-md);flex:1 0 0;font-family:var(--font-family-sans,\"Geist\",sans-serif),serif;font-size:var(--text-sm-size,13px);line-height:var(--text-sm-line,16px);min-height:40px;padding:8px 10px;transition:all .2s ease;width:100%}.new-form-input__input:focus{background-color:var(--surfaces-main-background-secondary,#f8f8fa);border-color:var(--border-selected,#6200ee);outline:none}.new-form-input__input::placeholder{color:var(--labels-main-label-secondary,#626a90)}.new-form-input__textarea{background-color:var(--surfaces-main-background-secondary,#f8f8fa);border:1px solid var(--borders-main-border-primary,#e8e9ef);border-radius:var(--radius-md,4px);color:var(--labels-main-label-primary,#121e52);font-family:var(--font-family-sans,\"Geist\",sans-serif),serif;font-size:var(--text-sm-size,13px);line-height:var(--text-sm-line,16px);min-height:120px;padding:8px 10px;resize:vertical;transition:all .2s ease;width:100%}.new-form-input__textarea:focus{border-color:var(--border-selected,#6200ee);outline:none}.new-form-input__textarea::placeholder{color:var(--labels-main-label-secondary,#626a90)}.new-form-input__input-with-icon{align-items:center;background-color:var(--surfaces-main-background-secondary,#f8f8fa);border:2px solid var(--borders-main-border-primary,#e8e9ef);border-radius:var(--radius-md,4px);display:flex;gap:var(--spacing-sm,8px);min-height:40px;padding:5px}.new-form-input__input-with-icon input{background:#0000;border:none;color:var(--labels-main-label-primary,#121e52);flex:1;font-family:var(--font-family-sans,\"Geist\",sans-serif),serif;font-size:var(--text-sm-size,13px);line-height:var(--text-sm-line,16px)}.new-form-input__input-with-icon input:focus{outline:none}.new-form-input__input-with-icon input::placeholder{color:var(--labels-main-label-secondary,#626a90)}.new-form-input__input-with-icon .icon{flex-shrink:0;height:22px;width:22px}.new-form-input__verification-code{display:flex;gap:var(--spacing-sm,8px);height:62px}.new-form-input__verification-code .code-input{background-color:var(--surfaces-main-background-secondary,#f8f8fa);border:2px solid var(--borders-main-border-primary,#e8e9ef);border-radius:var(--radius-md,4px);color:var(--labels-main-label-primary,#121e52);flex:1;font-family:var(--font-family-sans,\"Geist\",sans-serif),serif;font-size:var(--text-lg-size,18px);font-weight:var(--heading-h3-weight,600);text-align:center;transition:all .2s ease}.new-form-input__verification-code .code-input:focus{border-color:var(--border-selected,#6200ee);outline:none}.new-form-input__helper-text{color:var(--label-secondary,#626a90);font-size:13px;line-height:16px}.new-form-input__error-text,.new-form-input__helper-text{font-family:var(--font-family-sans,\"Geist\",sans-serif),serif;font-style:normal;font-weight:400;margin-top:2px}.new-form-input__error-text{color:var(--labels-status-label-error,#ef4444);font-size:11px;line-height:14px}.new-form-input--active .new-form-input__input{border-color:var(--border-selected,#6200ee)}.new-form-input--error .new-form-input__input{border-color:var(--borders-status-border-error,#ef4444)}.new-form-input--disabled{opacity:var(--opacity-50,.5);pointer-events:none}";
3
+ var css_248z = ".new-form-input{align-items:flex-start;align-self:stretch;display:flex;flex-direction:column;gap:var(--spacing-sm);width:100%}.new-form-input__label{color:var(--label-primary,#121e52);font-family:var(--font-family-sans,\"Geist\",sans-serif);font-size:15px;font-style:normal;font-weight:600;line-height:20px}.new-form-input__label-optional{color:var(--labels-main-label-secondary,#626a90);font-family:var(--font-family-sans,\"Geist\",sans-serif);font-size:var(--text-xs-size,11px);font-weight:400;line-height:var(--text-xs-line,14px);text-align:right}.new-form-input__label-row{align-items:center;display:flex;gap:var(--spacing-reg,16px);justify-content:space-between;width:100%}.new-form-input__input{background-color:var(--surfaces-main-background-secondary);background:var(--surface-secondary);border:2px solid var(--border-primary);border-radius:var(--radius-md);flex:1 0 0;font-family:var(--font-family-sans,\"Geist\",sans-serif);font-size:var(--text-regular-size,15px);line-height:var(--text-regular-line,20px);min-height:40px;padding:8px 10px;transition:all .2s ease;width:100%}@media (max-width:768px){.new-form-input__input{font-size:16px}}.new-form-input__input:focus{background-color:var(--surfaces-main-background-secondary,#f8f8fa);border-color:var(--border-selected,#6200ee);outline:none}.new-form-input__input::placeholder{color:var(--labels-main-label-secondary,#626a90)}.new-form-input__textarea{background-color:var(--surfaces-main-background-secondary,#f8f8fa);border:1px solid var(--borders-main-border-primary,#e8e9ef);border-radius:var(--radius-md,4px);color:var(--labels-main-label-primary,#121e52);font-family:var(--font-family-sans,\"Geist\",sans-serif);font-size:var(--text-regular-size,15px);line-height:var(--text-regular-line,20px);min-height:120px;padding:8px 10px;resize:vertical;transition:all .2s ease;width:100%}@media (max-width:768px){.new-form-input__textarea{font-size:16px}}.new-form-input__textarea:focus{border-color:var(--border-selected,#6200ee);outline:none}.new-form-input__textarea::placeholder{color:var(--labels-main-label-secondary,#626a90)}.new-form-input__input-with-icon{align-items:center;background-color:var(--surfaces-main-background-secondary,#f8f8fa);border:2px solid var(--borders-main-border-primary,#e8e9ef);border-radius:var(--radius-md,4px);display:flex;gap:var(--spacing-sm,8px);min-height:40px;padding:5px}.new-form-input__input-with-icon input{background:#0000;border:none;color:var(--label-primary);flex:1;font-family:var(--font-family-sans,\"Geist\",sans-serif);font-size:var(--text-regular-size,15px);line-height:var(--text-regular-line,20px)}@media (max-width:768px){.new-form-input__input-with-icon input{font-size:16px}}.new-form-input__input-with-icon input:focus{outline:none}.new-form-input__input-with-icon input::placeholder{color:var(--labels-main-label-secondary,#626a90)}.new-form-input__input-with-icon .icon{flex-shrink:0;height:22px;width:22px}.new-form-input__verification-code{display:flex;gap:var(--spacing-sm,8px);height:62px}.new-form-input__verification-code .code-input{background-color:var(--surfaces-main-background-secondary,#f8f8fa);border:2px solid var(--borders-main-border-primary,#e8e9ef);border-radius:var(--radius-md,4px);color:var(--labels-main-label-primary,#121e52);flex:1;font-family:var(--font-family-sans,\"Geist\",sans-serif);font-size:var(--text-lg-size,18px);font-weight:var(--heading-h3-weight,600);text-align:center;transition:all .2s ease}.new-form-input__verification-code .code-input:focus{border-color:var(--border-selected,#6200ee);outline:none}.new-form-input__helper-text{color:var(--label-secondary,#626a90);font-size:var(--text-regular-size,15px);line-height:var(--text-regular-line,20px)}.new-form-input__error-text,.new-form-input__helper-text{font-family:var(--font-family-sans,\"Geist\",sans-serif);font-style:normal;font-weight:400;margin-top:2px}.new-form-input__error-text{color:var(--labels-status-label-error,#ef4444);font-size:11px;line-height:14px}.new-form-input--active .new-form-input__input{border-color:var(--border-selected,#6200ee)}.new-form-input--error .new-form-input__input{border-color:var(--borders-status-border-error,#ef4444)}.new-form-input--disabled{opacity:var(--opacity-50,.5);pointer-events:none}";
4
4
  styleInject(css_248z);
5
5
 
6
6
  export { css_248z as default };
@@ -387,7 +387,7 @@
387
387
  /* Borders */
388
388
  --border-primary: var(--tone-light);
389
389
  --border-secondary: var(--tone-regular);
390
- --border-selected: var(--purple-regular);
390
+ --border-selected: var(--neutral-600);
391
391
  --border-action: var(--actions-regular);
392
392
  --border-status-error: var(--errors-lighter);
393
393
  --border-status-success: var(--success-lighter);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@licklist/design",
3
- "version": "0.78.5-dev.43",
3
+ "version": "0.78.5-dev.46",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+ssh://git@bitbucket.org/bookedit-licklist/licklist_design.git"
@@ -42,7 +42,7 @@
42
42
  ]
43
43
  },
44
44
  "peerDependencies": {
45
- "@licklist/core": "0.36.1-dev.10",
45
+ "@licklist/core": "0.36.1-dev.12",
46
46
  "@licklist/eslint-config": "0.5.6",
47
47
  "@licklist/plugins": "0.36.4-dev.13",
48
48
  "clsx": "2.1.1",
@@ -64,7 +64,7 @@
64
64
  "@dnd-kit/utilities": "2.0.0",
65
65
  "@fortawesome/fontawesome-svg-core": "1.2.34",
66
66
  "@fortawesome/free-solid-svg-icons": "5.15.2",
67
- "@licklist/core": "0.36.1-dev.10",
67
+ "@licklist/core": "0.36.1-dev.12",
68
68
  "@licklist/eslint-config": "0.5.6",
69
69
  "@licklist/plugins": "0.36.4-dev.13",
70
70
  "@mantine/core": "6.0.22",
package/src/index.ts CHANGED
@@ -48,4 +48,5 @@ export * from './PageNotFound'
48
48
  export * from './UnderMaintenance'
49
49
  export * from './v2/dashboard-analytics'
50
50
  export * from './v2/navigation/DashboardLayout'
51
+ export * from './v2/pages/Settings'
51
52
  export * from './v2/components'
@@ -55,7 +55,13 @@
55
55
  .checkbox__xmark {
56
56
  opacity: 1;
57
57
  visibility: visible;
58
- transform: translateX(0); // X mark slides to right (natural position)
58
+ top: 50%;
59
+ position: absolute;
60
+ right: 4px;
61
+ transform: translateY(-50%);
62
+ display: flex;
63
+ align-items: center;
64
+ justify-content: center;
59
65
  }
60
66
 
61
67
  .checkbox__checked-group {
@@ -70,13 +76,12 @@
70
76
  align-items: center;
71
77
  justify-content: flex-end; // Positions X mark to the right
72
78
  width: 58px;
73
- height: auto;
79
+ height: 34px; // Set explicit height to help with vertical centering
74
80
  min-width: 58px;
75
81
  padding: 4px;
76
- background: transparent;
82
+ background: var(--surface-secondary, #F8F8FA);
77
83
  border: 1px solid var(--border-primary, #E8E9EF);
78
84
  border-radius: var(--padding-xl, 32px);
79
- transition: background 0.3s ease, border 0.3s ease;
80
85
  flex-shrink: 0;
81
86
  }
82
87
 
@@ -85,8 +90,6 @@
85
90
  height: 24px;
86
91
  opacity: 0; // Hidden by default (blank state)
87
92
  visibility: hidden;
88
- transition: all 0.3s ease;
89
- transform: translateX(-20px); // Start from left when hidden
90
93
 
91
94
  svg {
92
95
  width: 100%;
@@ -97,17 +100,24 @@
97
100
  &__checked-group {
98
101
  position: absolute;
99
102
  left: 4px;
103
+ top: 50%;
104
+ transform: translateY(-50%);
100
105
  width: 24px;
101
106
  height: 24px;
102
107
  opacity: 0;
103
108
  visibility: hidden;
104
- transition: all 0.3s ease;
109
+ display: flex;
110
+ align-items: center;
111
+ justify-content: center;
105
112
  }
106
113
 
107
114
  &__circle {
108
115
  position: relative;
109
116
  width: 24px;
110
117
  height: 24px;
118
+ display: flex;
119
+ align-items: center;
120
+ justify-content: center;
111
121
 
112
122
  svg {
113
123
  width: 100%;
@@ -122,6 +132,9 @@
122
132
  transform: translate(-50%, -50%);
123
133
  width: 24px;
124
134
  height: 24px;
135
+ display: flex;
136
+ align-items: center;
137
+ justify-content: center;
125
138
 
126
139
  svg {
127
140
  width: 100%;
@@ -139,19 +152,19 @@
139
152
  &__label {
140
153
  font-family: var(--font-family-sans, 'Geist', sans-serif), serif;
141
154
  color: var(--label-primary);
142
- font-size: 13px;
155
+ font-size: 15px;
143
156
  font-style: normal;
144
- font-weight: 500;
145
- line-height: 16px;
157
+ font-weight: 600;
158
+ line-height: 20px;
146
159
  }
147
160
 
148
161
  &__description {
149
162
  color: var(--label-secondary);
150
163
  font-family: var(--font-family-sans, 'Geist', sans-serif), serif;
151
- font-size: 13px;
164
+ font-size: var(--text-regular-size, 15px);
152
165
  font-style: normal;
153
166
  font-weight: 400;
154
- line-height: 16px;
167
+ line-height: var(--text-regular-line, 20px);
155
168
  }
156
169
 
157
170
  &__error-text {
@@ -166,8 +179,10 @@
166
179
  border-color: var(--border-primary-hover, #d1d3de);
167
180
  }
168
181
 
169
- // Pristine state - blank checkbox on load (no icons)
170
182
  &--pristine {
183
+ .checkbox__toggle {
184
+ background: var(--surface-secondary, #F8F8FA);
185
+ }
171
186
  .checkbox__xmark,
172
187
  .checkbox__checked-group {
173
188
  opacity: 0 !important;
@@ -9,9 +9,9 @@
9
9
 
10
10
  &__label {
11
11
  font-family: var(--font-family-sans, 'Geist', sans-serif);
12
- font-size: var(--text-sm-size, 13px);
13
- font-weight: var(--heading-h5-weight, 500);
14
- line-height: var(--text-sm-line, 16px);
12
+ font-size: 15px;
13
+ font-weight: 600;
14
+ line-height: 20px;
15
15
  color: var(--label-primary, #121e52);
16
16
  margin: 0;
17
17
  display: flex;
@@ -33,8 +33,8 @@
33
33
  padding: 8px 10px;
34
34
  height: 40px;
35
35
  font-family: var(--font-family-sans, 'Geist', sans-serif);
36
- font-size: var(--text-sm-size, 13px);
37
- line-height: var(--text-sm-line, 16px);
36
+ font-size: var(--text-regular-size, 15px);
37
+ line-height: var(--text-regular-line, 20px);
38
38
  color: var(--label-primary, #121e52);
39
39
  background-color: var(--surface-secondary, #f8f8fa);
40
40
  border: 2px solid var(--border-primary, #e8e9ef);
@@ -57,10 +57,10 @@
57
57
  }
58
58
 
59
59
  &--error {
60
- border-color: var(--label-status-error, #ef4444);
60
+ border-color: var(--borders-status-border-error, #ef4444);
61
61
 
62
62
  &:focus {
63
- border-color: var(--label-status-error, #ef4444);
63
+ border-color: var(--borders-status-border-error, #ef4444);
64
64
  }
65
65
  }
66
66
 
@@ -73,8 +73,8 @@
73
73
  }
74
74
 
75
75
  &__help-text {
76
- font-size: var(--text-xs-size, 11px);
77
- line-height: var(--text-xs-line, 14px);
76
+ font-size: var(--text-regular-size, 15px);
77
+ line-height: var(--text-regular-line, 20px);
78
78
  color: var(--label-secondary, #626a90);
79
79
  }
80
80
 
@@ -6,6 +6,12 @@
6
6
  align-self: stretch;
7
7
  padding-left: 32px;
8
8
  padding-right: 32px;
9
+
10
+ @media (max-width: 768px) {
11
+ padding-left: 16px;
12
+ padding-right: 16px;
13
+ gap: 16px;
14
+ }
9
15
  }
10
16
 
11
17
  .new-page-header {
@@ -14,6 +20,12 @@
14
20
  align-items: center;
15
21
  align-self: stretch;
16
22
  width: 100%;
23
+ gap: 16px;
24
+
25
+ @media (max-width: 768px) {
26
+ gap: 8px;
27
+ padding-top: 16px;
28
+ }
17
29
 
18
30
  &__title {
19
31
  color: var(--label-primary);
@@ -69,7 +69,7 @@
69
69
 
70
70
  &--error {
71
71
  background-color: var(--surface-status-error);
72
- border-color: var(--border-status-error);
72
+ border-color: var(--borders-status-border-error);
73
73
 
74
74
  &:hover:not(:disabled) {
75
75
  background-color: var(--errors-lighter);
@@ -77,7 +77,7 @@
77
77
  }
78
78
 
79
79
  &:focus {
80
- border-color: var(--errors-dark);
80
+ border-color: var(--borders-status-border-error);
81
81
  background-color: var(--surface-status-error);
82
82
  }
83
83
  }
@@ -141,7 +141,7 @@
141
141
  height: 6px;
142
142
  stroke: var(--label-secondary);
143
143
  transition: all 0.2s ease-in-out;
144
-
144
+
145
145
  .select:focus + & {
146
146
  transform: translateY(-50%) rotate(180deg);
147
147
  }
@@ -164,7 +164,7 @@
164
164
  opacity: 0.8;
165
165
  transform: scale(0.98);
166
166
  border-color: var(--cyan-700);
167
-
167
+
168
168
  &:focus {
169
169
  transform: scale(0.98) translateY(-1px);
170
170
  }
@@ -185,4 +185,4 @@
185
185
 
186
186
  .select--filter-active {
187
187
  animation: filterPulse 0.6s ease-out;
188
- }
188
+ }
@@ -53,12 +53,6 @@ export const NumberedListIcon = () => (
53
53
  </svg>
54
54
  );
55
55
 
56
- export const TaskListIcon = () => (
57
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none">
58
- <path d="M9.00006 7.5V9.75H6.75006V7.5H9.00006ZM5.25006 6V11.25H10.5001V6H5.25006ZM12.7501 6H18.7501V7.5H12.7501V6ZM12.7501 11.25H18.7501V12.75H12.7501V11.25ZM12.7501 16.5H18.7501V18H12.7501V16.5ZM11.0304 15.1553L9.96973 14.0947L7.50006 16.5644L6.15538 15.2197L5.09473 16.2803L7.50006 18.6856L11.0304 15.1553Z" fill="#626A90"/>
59
- </svg>
60
- );
61
-
62
56
  export const QuoteAltIcon = () => (
63
57
  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none">
64
58
  <path d="M6.43756 15.9909C5.66487 15.1706 5.25 14.25 5.25 12.7578C5.25 10.1332 7.09238 7.78029 9.77294 6.61743L10.4425 7.65064C7.94103 9.00409 7.45214 10.7595 7.25673 11.8665C7.65947 11.6583 8.18669 11.585 8.70353 11.6329C10.0568 11.7584 11.1234 12.8693 11.1234 14.25C11.1234 15.6998 9.94812 16.875 8.49837 16.875C7.69357 16.875 6.92397 16.5072 6.43756 15.9909ZM13.9375 15.9909C13.1649 15.1706 12.75 14.25 12.75 12.7578C12.75 10.1332 14.5924 7.78029 17.2729 6.61743L17.9425 7.65064C15.441 9.00409 14.9522 10.7595 14.7567 11.8665C15.1594 11.6583 15.6867 11.585 16.2035 11.6329C17.5568 11.7584 18.6234 12.8693 18.6234 14.25C18.6234 15.6998 17.4481 16.875 15.9984 16.875C15.1936 16.875 14.424 16.5072 13.9375 15.9909Z" fill="#626A90"/>
@@ -81,18 +75,7 @@ export const UndoIcon = () => (
81
75
 
82
76
  export const RedoIcon = () => (
83
77
  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none">
84
- <path d="M6.06131 6.69136C5.88684 6.85818 5.71976 7.03357 5.56136 7.21755C5.32407 7.49319 5.10569 7.78768 4.90881 8.09936C4.77746 8.30727 4.65565 8.52287 4.54421 8.7457C4.48837 8.85736 4.43524 8.9709 4.38469 9.08613C4.2839 9.31587 4.19401 9.5527 4.11539 9.796C4.07598 9.91797 4.03914 10.0416 4.00559 10.1668C3.93079 10.446 3.87328 10.7259 3.83158 11.0051C3.82934 11.0201 3.82751 11.0351 3.82536 11.05C3.81494 11.1228 3.80597 11.1955 3.79774 11.2682C3.79428 11.2986 3.79116 11.329 3.78807 11.3594C3.78326 11.4071 3.77883 11.4547 3.77495 11.5023C3.75889 11.6978 3.75077 11.8926 3.75009 12.0865C3.75003 12.1086 3.74996 12.1307 3.75009 12.1528C3.75089 12.3012 3.75571 12.449 3.76528 12.5961C3.7665 12.6146 3.76808 12.633 3.76943 12.6514C3.82014 13.3498 3.96775 14.0309 4.20377 14.6767L7.62813 11.1377L5.45502 10.5556C5.48179 10.4557 5.51129 10.3567 5.54272 10.2594C5.66865 9.8695 5.83151 9.50078 6.02609 9.15588C6.07459 9.06992 6.12494 8.9854 6.17732 8.90245C6.91264 7.73794 8.02285 6.87449 9.29715 6.43448C9.38818 6.40305 9.48005 6.37386 9.57268 6.34679C10.1284 6.18439 10.7114 6.10131 11.3052 6.10717C11.4042 6.10814 11.5034 6.11157 11.6028 6.11753C12.0008 6.14137 12.4022 6.2058 12.8023 6.31295C13.2945 6.44483 13.7566 6.63317 14.182 6.8709C14.2125 6.88794 14.2416 6.90723 14.2718 6.92476C14.7547 7.20595 15.1899 7.54933 15.5686 7.94261C15.6449 8.02185 15.7186 8.10326 15.7902 8.18637C15.9047 8.31912 16.0139 8.45605 16.1162 8.59793C16.1915 8.70249 16.2625 8.80995 16.3309 8.91903C17.1864 10.2824 17.4949 11.9837 17.0456 13.6609C16.327 16.3424 13.9009 18.1093 11.2507 18.108V19.6078C14.5636 19.6095 17.5967 17.4016 18.4951 14.0497C19.0819 11.8595 18.6347 9.6365 17.4544 7.89634L17.4558 7.89496C17.4301 7.85706 17.4028 7.81984 17.3764 7.78241C17.3604 7.75975 17.3443 7.73721 17.3281 7.71473C17.2772 7.64435 17.2253 7.57483 17.172 7.50619C17.1543 7.48339 17.1368 7.46044 17.1188 7.43783C17.0658 7.37103 17.0112 7.30536 16.9559 7.24034C16.9336 7.21424 16.9115 7.18811 16.8889 7.16231C16.8382 7.10446 16.7867 7.04739 16.7342 6.99105C16.7045 6.95913 16.6747 6.92719 16.6444 6.89576C16.4036 6.64603 16.1448 6.41195 15.869 6.19625C15.8379 6.17193 15.8052 6.14967 15.7737 6.12582C15.715 6.08143 15.657 6.03598 15.5969 5.99323C15.5586 5.96599 15.5191 5.94038 15.4802 5.91382C15.4213 5.87363 15.3622 5.83365 15.302 5.79505C15.2644 5.7709 15.2263 5.74744 15.1881 5.72393C15.1285 5.6872 15.0687 5.65066 15.0079 5.61551C14.959 5.58729 14.9097 5.55983 14.8601 5.53265C14.8028 5.50128 14.745 5.47076 14.6868 5.44081C14.6463 5.41998 14.6055 5.39949 14.5645 5.37935C14.4883 5.3419 14.4111 5.30595 14.3332 5.27093C14.3021 5.25697 14.2713 5.24238 14.24 5.22881C14.1572 5.19297 14.0732 5.15965 13.9886 5.12661C13.953 5.11267 13.9176 5.09792 13.8816 5.08449C13.8148 5.05956 13.7471 5.03652 13.6793 5.01337C13.6344 4.99807 13.5899 4.98161 13.5446 4.9671C13.4284 4.92988 13.3102 4.89544 13.1911 4.86352C12.691 4.72957 12.1893 4.6496 11.6919 4.61976C11.4431 4.60484 11.1954 4.60237 10.9496 4.61217C10.8266 4.61706 10.7042 4.62473 10.5822 4.63564C10.3388 4.65745 10.0974 4.69064 9.85925 4.73577C8.42886 5.00676 7.10753 5.69099 6.06131 6.69136Z" fill="#626A90"/>
78
+ <path d="M6.06131 6.69136C7.57508 5.61718 9.42169 5.01103 11.2847 5.00012C13.6826 4.98606 15.9892 5.92634 17.705 7.61633C19.4208 9.30632 20.4039 11.6033 20.4411 14.0084C20.4784 16.4135 19.5668 18.7239 17.9042 20.4371C16.2415 22.1504 13.9686 23.123 11.5794 23.1437C9.19013 23.1643 6.87707 22.2312 5.14341 20.5472L6.18225 19.4716C7.62779 20.8757 9.55655 21.6538 11.5488 21.6366C13.5411 21.6193 15.4363 20.8083 16.8227 19.3798C18.2091 17.9513 18.9692 16.0248 18.9381 14.0194C18.9071 12.014 18.0873 10.0987 16.6567 8.68961C15.2261 7.28052 13.3028 6.49646 11.3033 6.50818C9.75051 6.51728 8.21142 7.02243 6.94998 7.91782L10.25 11.25H5.25V6.25L6.06131 6.69136Z" fill="#626A90"/>
85
79
  </svg>
86
80
  );
87
81
 
88
- export const RedoAltIcon = () => (
89
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none">
90
- <path d="M14.7783 5.1401C16.899 5.98783 18.6074 7.79081 19.244 10.1665C19.2815 10.3065 19.3136 10.4469 19.3428 10.587C19.3503 10.6234 19.3579 10.6598 19.3649 10.6961C19.3758 10.7532 19.3856 10.8103 19.3952 10.8674C19.3988 10.8883 19.4022 10.9093 19.4056 10.9302C19.4295 11.0794 19.4496 11.2283 19.4643 11.377C19.4663 11.397 19.4673 11.4171 19.4691 11.4371C19.571 12.5575 19.4176 13.6601 19.0465 14.6757L15.6222 11.1367L17.7946 10.5539C17.741 10.3542 17.6779 10.1596 17.6061 9.97039C17.57 9.87555 17.5318 9.7821 17.4914 9.69003C17.0879 8.77009 16.4702 7.99017 15.7147 7.39538C15.4122 7.15727 15.0875 6.94923 14.7459 6.77321C14.2774 6.53178 13.7765 6.35274 13.2564 6.24081C12.3559 6.04711 11.3975 6.05715 10.4466 6.31194C10.2147 6.37407 9.9903 6.45035 9.77265 6.53705C9.61715 6.59899 9.46465 6.66505 9.31689 6.73869C8.29847 7.24626 7.46969 8.02427 6.8945 8.95668C6.05731 10.3136 5.75827 11.9985 6.20328 13.6599C6.92179 16.3414 9.34799 18.1081 11.9982 18.1069L11.9989 19.6061C8.68576 19.608 5.65276 17.4002 4.75454 14.048C4.16791 11.8578 4.61554 9.63526 5.79586 7.89533L5.79448 7.89395C5.81581 7.86251 5.83827 7.83185 5.86008 7.80073C5.8864 7.76317 5.91317 7.72595 5.94018 7.68886C5.97698 7.63833 6.01398 7.58795 6.05205 7.53833C6.08438 7.49618 6.11687 7.45413 6.15011 7.41265C6.19423 7.35758 6.24044 7.30422 6.28614 7.25037C6.31108 7.22099 6.33532 7.191 6.36072 7.16198C6.41092 7.10463 6.46271 7.04867 6.51471 6.9928C6.54488 6.96039 6.5744 6.92734 6.60517 6.89544C6.84601 6.64568 7.10482 6.41165 7.38064 6.19593C7.41173 6.17161 7.44441 6.14934 7.47593 6.12549C7.53489 6.08087 7.59366 6.03587 7.65409 5.99291C7.69049 5.96703 7.72765 5.94221 7.76457 5.91695C7.82724 5.87408 7.89031 5.83165 7.95447 5.79058C7.9885 5.76881 8.02292 5.74762 8.05736 5.72636C8.11894 5.68835 8.18092 5.65082 8.2438 5.6145C8.28971 5.58798 8.33601 5.56206 8.3826 5.53647C8.44512 5.50212 8.50807 5.46832 8.57181 5.43565C8.60987 5.41614 8.64794 5.39654 8.68644 5.37764C8.75026 5.34631 8.8148 5.31612 8.87979 5.28649C8.93014 5.26354 8.98066 5.24074 9.0317 5.21882C9.0919 5.19297 9.15286 5.16861 9.214 5.14424C9.262 5.12511 9.30976 5.10513 9.35833 5.08693C9.54044 5.01866 9.72708 4.95876 9.91697 4.90394C9.96389 4.89039 10.0105 4.8752 10.0578 4.86251C10.395 4.77217 10.7333 4.70888 11.0702 4.66639C11.2333 4.64581 11.3959 4.62849 11.5584 4.61875C12.6773 4.55174 13.7742 4.73862 14.7783 5.1401Z" fill="#626A90"/>
91
- </svg>
92
- );
93
-
94
- export const ClearFormattingIcon = () => (
95
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none">
96
- <path d="M12.4884 13.549L11.7035 18H10.1804L11.1935 12.2542L5.63599 6.69664L6.69664 5.63599L18.3639 17.3033L17.3032 18.3639L12.4884 13.549ZM11.8295 8.64752L12.0319 7.49995H10.6819L9.18193 5.99995H17.9999V7.49995H13.555L13.1243 9.94234L11.8295 8.64752Z" fill="#626A90"/>
97
- </svg>
98
- );
@@ -11,10 +11,10 @@
11
11
  &__label {
12
12
  font-family: var(--font-family-sans, 'Geist', sans-serif);
13
13
  color: var(--label-primary);
14
- font-size: 13px;
14
+ font-size: 15px;
15
15
  font-style: normal;
16
- font-weight: 500;
17
- line-height: 16px;
16
+ font-weight: 600;
17
+ line-height: 20px;
18
18
  margin: 0;
19
19
  }
20
20
 
@@ -36,32 +36,31 @@
36
36
  }
37
37
 
38
38
  &--error {
39
- border-color: var(--label-status-error, #ef4444);
39
+ border-color: var(--borders-status-border-error, #ef4444);
40
40
  }
41
41
  }
42
42
 
43
43
  &__toolbar {
44
44
  display: flex;
45
45
  flex-wrap: wrap;
46
- padding: 4px 8px;
47
- align-items: flex-start;
48
- gap: 2px;
46
+ padding: 0 4px;
47
+ align-items: center;
48
+ gap: 0;
49
49
  align-self: stretch;
50
- border-radius: var(--radius-md) var(--radius-zero);
51
- border-top: 2px solid var(--border-primary);
52
- border-right: 2px solid var(--border-primary);
53
- border-left: 2px solid var(--border-primary);
50
+ border-radius: 2px 2px 0 0;
54
51
  background: var(--surface-tertiary);
52
+ border-bottom: 2px solid var(--border-primary);
55
53
  }
56
54
 
57
55
  &__toolbar-btn {
58
56
  display: flex;
59
57
  align-items: center;
60
58
  justify-content: center;
61
- height: 28px;
59
+ width: 40px;
60
+ height: 40px;
62
61
  border: none;
63
62
  background: transparent;
64
- border-radius: var(--radius-sm);
63
+ border-radius: 4px;
65
64
  cursor: pointer;
66
65
  color: var(--label-secondary);
67
66
  transition: all 0.2s ease;
@@ -72,9 +71,14 @@
72
71
  flex-shrink: 0;
73
72
  }
74
73
 
74
+ &[title="Heading 1"] svg,
75
+ &[title="Heading 2"] svg {
76
+ transform: scale(0.8);
77
+ }
78
+
75
79
  &:hover {
76
- background-color: var(--surface-secondary, #f8f8fa);
77
- color: var(--label-primary, #121e52);
80
+ background-color: var(--surface-secondary);
81
+ color: var(--label-primary);
78
82
  }
79
83
 
80
84
  &--active {
@@ -87,7 +91,8 @@
87
91
  width: 1px;
88
92
  height: 18px;
89
93
  background-color: var(--border-primary, #e8e9ef);
90
- margin: 0 4px;
94
+ margin: 0 8px;
95
+ display: block;
91
96
  }
92
97
 
93
98
  &__content {
@@ -95,13 +100,17 @@
95
100
  padding: 12px;
96
101
  outline: none;
97
102
  font-family: var(--font-family-sans, 'Geist', sans-serif);
98
- font-size: var(--text-sm-size, 13px);
99
- line-height: 1.5;
103
+ font-size: var(--text-regular-size, 15px);
104
+ line-height: var(--text-regular-line, 20px);
100
105
  color: var(--label-primary, #121e52);
101
106
  background-color: var(--surface-secondary, #f8f8fa);
102
107
  overflow-y: auto;
103
108
  text-align: left;
104
109
 
110
+ @media (max-width: 768px) {
111
+ font-size: 16px;
112
+ }
113
+
105
114
  &--disabled {
106
115
  background-color: var(--surface-status-disabled, #f8f8fa);
107
116
  cursor: not-allowed;
@@ -116,13 +125,17 @@
116
125
 
117
126
  // Styles for content elements
118
127
  h1, h2, p, ul, ol, blockquote, hr {
119
- font-family: var(--font-family-sans, 'Geist', sans-serif), serif;
120
- font-size: var(--text-sm-size, 13px);
121
- line-height: 1.5;
128
+ font-family: var(--font-family-sans, 'Geist', sans-serif);
129
+ font-size: var(--text-regular-size, 15px);
130
+ line-height: var(--text-regular-line, 20px);
122
131
  color: var(--label-primary, #121e52);
123
132
  overflow-y: auto;
124
133
  text-align: left;
125
134
 
135
+ @media (max-width: 768px) {
136
+ font-size: 16px;
137
+ }
138
+
126
139
  &:first-child {
127
140
  margin-top: 0;
128
141
  }
@@ -154,9 +167,9 @@
154
167
 
155
168
  p {
156
169
  margin: 8px 0;
157
- font-family: var(--font-family-sans, 'Geist', sans-serif), serif;
158
- font-size: var(--text-sm-size, 13px);
159
- line-height: 1.5;
170
+ font-family: var(--font-family-sans, 'Geist', sans-serif);
171
+ font-size: var(--text-regular-size, 15px);
172
+ line-height: var(--text-regular-line, 20px);
160
173
  color: var(--label-primary, #121e52);
161
174
 
162
175
  &:first-child {
@@ -172,8 +185,8 @@
172
185
  margin: 8px 0;
173
186
  padding-left: 24px;
174
187
  font-family: var(--font-family-sans, 'Geist', sans-serif);
175
- font-size: var(--text-sm-size, 13px);
176
- line-height: 1.5;
188
+ font-size: var(--text-regular-size, 15px);
189
+ line-height: var(--text-regular-line, 20px);
177
190
  color: var(--label-primary, #121e52);
178
191
 
179
192
  &:first-child {
@@ -188,8 +201,8 @@
188
201
  li {
189
202
  margin: 4px 0;
190
203
  font-family: var(--font-family-sans, 'Geist', sans-serif);
191
- font-size: var(--text-sm-size, 13px);
192
- line-height: 1.5;
204
+ font-size: var(--text-regular-size, 15px);
205
+ line-height: var(--text-regular-line, 20px);
193
206
  color: var(--label-primary, #121e52);
194
207
  }
195
208
 
@@ -199,8 +212,8 @@
199
212
  border-left: 4px solid var(--border-selected, #121e52);
200
213
  background-color: var(--surface-tertiary, #efefef);
201
214
  font-family: var(--font-family-sans, 'Geist', sans-serif);
202
- font-size: var(--text-sm-size, 13px);
203
- line-height: 1.5;
215
+ font-size: var(--text-regular-size, 15px);
216
+ line-height: var(--text-regular-line, 20px);
204
217
  color: var(--label-secondary, #626a90);
205
218
  font-style: italic;
206
219
 
@@ -214,10 +227,14 @@
214
227
  }
215
228
 
216
229
  hr {
230
+ display: block;
217
231
  margin: 16px 0;
218
232
  border: none;
219
233
  border-top: 2px solid var(--border-primary, #e8e9ef);
220
234
  height: 0;
235
+ box-sizing: content-box;
236
+ opacity: 1;
237
+ visibility: visible;
221
238
 
222
239
  &:first-child {
223
240
  margin-top: 0;
@@ -284,10 +301,10 @@
284
301
 
285
302
  &__help-text {
286
303
  font-family: var(--font-family-sans, 'Geist', sans-serif);
287
- font-size: 13px;
304
+ font-size: var(--text-regular-size, 15px);
288
305
  font-style: normal;
289
306
  font-weight: 400;
290
- line-height: 16px;
307
+ line-height: var(--text-regular-line, 20px);
291
308
  margin-top: -5px;
292
309
  color: var(--label-secondary);
293
310
  }
@@ -297,4 +314,5 @@
297
314
  color: var(--label-status-error, #ef4444);
298
315
  margin-top: 2px;
299
316
  }
317
+
300
318
  }