1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
import styled from 'styled-components';
import { buttonText } from './common-styles';
export const StyledLabelContainer = styled.div((props: { textAdjustment: number }) => ({
display: 'flex',
flex: 1,
paddingRight: `${props.textAdjustment > 0 ? props.textAdjustment : 0}px`,
paddingLeft: `${props.textAdjustment < 0 ? Math.abs(props.textAdjustment) : 0}px`,
}));
export const StyledLabel = styled.span(buttonText, {
flex: 1,
textAlign: 'center',
});
export const StyledButtonContent = styled.div({
display: 'flex',
flex: 1,
flexDirection: 'row',
alignItems: 'center',
justifyContent: 'center',
padding: '9px',
});
export const transparentButton = {
backdropFilter: 'blur(4px)',
};
|