Skip to content

Commit f30c0e5

Browse files
authored
fix: matched the height of sidebar header with the topbar (#541)
* fix: matched the height of sidebar header with the topbar * chore: minor changes
1 parent 0461cf8 commit f30c0e5

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

apps/site/src/themes/AIT_FOUNDATION_TOKENS.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -179,6 +179,7 @@ const ALT_FOUNDATION_TOKENS: FoundationTokenType = {
179179
'10': '10px',
180180
'12': '12px',
181181
'14': '14px',
182+
'15': '15px',
182183
'16': '16px',
183184
'18': '18px',
184185
'20': '20px',

packages/blend/lib/components/Sidebar/sidebar.tokens.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ export const getSidebarTokens = (
216216
backgroundColor: foundationToken.colors.gray[25],
217217
padding: {
218218
x: foundationToken.unit[12],
219-
y: foundationToken.unit[14],
219+
y: foundationToken.unit[15],
220220
},
221221
gap: foundationToken.unit[16],
222222
borderBottom: `1px solid ${foundationToken.colors.gray[200]}`,

packages/blend/lib/tokens/unit.tokens.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ export type UnitTokensType = Readonly<{
2121
10: UnitType
2222
12: UnitType
2323
14: UnitType
24+
15: UnitType
2425
16: UnitType
2526
18: UnitType
2627
20: UnitType
@@ -57,6 +58,7 @@ const unitTokens: UnitTokensType = {
5758
12: '12px',
5859
13: '13px',
5960
14: '14px',
61+
15: '15px',
6062
16: '16px',
6163
18: '18px',
6264
20: '20px',

0 commit comments

Comments
 (0)