feat: CellForceWidth component.

This commit is contained in:
a.bouhuolia
2021-11-01 09:34:58 +02:00
parent 613454a862
commit 24bd754c72
8 changed files with 66 additions and 4 deletions

View File

@@ -0,0 +1,23 @@
import styled from 'styled-components';
import { Button } from '@blueprintjs/core';
export const ButtonLink = styled(Button)`
line-height: inherit;
&.bp3-small {
min-height: auto;
min-width: auto;
padding: 0;
}
&:not([class*='bp3-intent-']) {
&,
&:hover {
color: #0052cc;
background: transparent;
}
&:hover {
text-decoration: underline;
}
}
`;

View File

@@ -0,0 +1,3 @@
export * from './ButtonLink';