mirror of
https://gh.wpcy.net/https://github.com/elementor/one-click-accessibility.git
synced 2026-04-26 10:01:44 +08:00
21 lines
464 B
JavaScript
21 lines
464 B
JavaScript
import InputLabel from '@elementor/ui/InputLabel';
|
|
import Paper from '@elementor/ui/Paper';
|
|
import { styled } from '@elementor/ui/styles';
|
|
|
|
export const StyledLabel = styled(InputLabel)`
|
|
display: flex;
|
|
align-items: start;
|
|
overflow: visible;
|
|
gap: ${({ theme }) => theme.spacing(0.5)};
|
|
`;
|
|
|
|
export const StyledPaper = styled(Paper)`
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 140px;
|
|
& > * {
|
|
max-height: 100%;
|
|
width: auto;
|
|
}
|
|
`;
|