fix(client): heatmap button size (#59576)

This commit is contained in:
Tom
2025-04-03 14:14:48 -05:00
committed by GitHub
parent 34c38f3f11
commit 369e0591ac
2 changed files with 4 additions and 1 deletions

View File

@@ -146,6 +146,7 @@ class HeatMapInner extends Component<HeatMapInnerProps, HeatMapInnerState> {
/>
<ReactTooltip className='react-tooltip' effect='solid' html={true} />
<Row className='text-center'>
<Spacer size='xs' />
<button
className='heatmap-nav-btn'
disabled={!pages[this.state.pageIndex - 1]}
@@ -170,7 +171,7 @@ class HeatMapInner extends Component<HeatMapInnerProps, HeatMapInnerState> {
&gt;
</button>
</Row>
<Spacer size='m' />
<Spacer size='xs' />
</section>
</FullWidthRow>
);

View File

@@ -1,5 +1,7 @@
.heatmap-nav-btn {
margin: 0 20px;
width: 44px;
height: 44px;
}
.react-calendar-heatmap-month-label {