File tree Expand file tree Collapse file tree 2 files changed +9
-4
lines changed
src/frontend/apps/impress/src/features/docs/docs-grid/components Expand file tree Collapse file tree 2 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ and this project adheres to
19
19
## Changed
20
20
21
21
- 💄(frontend) add abilities on doc row #581
22
+ - 💄(frontend) improve DocsGridItem responsive padding #582
22
23
23
24
24
25
## [ 2.0.1] - 2025-01-17
Original file line number Diff line number Diff line change @@ -68,10 +68,14 @@ export const DocsGridItem = ({ doc }: DocsGridItemProps) => {
68
68
< SimpleDocItem isPinned = { doc . is_favorite } doc = { doc } />
69
69
{ showAccesses && (
70
70
< Box
71
- $padding = { { top : '3xs' } }
72
- $css = { css `
73
- align-self : flex-start;
74
- ` }
71
+ $padding = { { top : ! isDesktop ? '4xs' : undefined } }
72
+ $css = {
73
+ ! isDesktop
74
+ ? css `
75
+ align-self : flex-start;
76
+ `
77
+ : undefined
78
+ }
75
79
>
76
80
< Tooltip
77
81
content = {
You can’t perform that action at this time.
0 commit comments