mirror of
https://gitee.com/ByteDance/flowgram.ai.git
synced 2025-07-07 17:43:29 +08:00
21 lines
445 B
TypeScript
21 lines
445 B
TypeScript
import styled from 'styled-components';
|
|
|
|
export const FormWrapper = styled.div`
|
|
box-sizing: border-box;
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 6px;
|
|
background-color: rgba(0, 0, 0, 0.02);
|
|
padding: 0 12px 12px;
|
|
`;
|
|
|
|
export const FormTitleDescription = styled.div`
|
|
color: var(--semi-color-text-2);
|
|
font-size: 12px;
|
|
line-height: 20px;
|
|
padding: 0px 4px;
|
|
word-break: break-all;
|
|
white-space: break-spaces;
|
|
`;
|