-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.ts
More file actions
41 lines (35 loc) · 955 Bytes
/
styles.ts
File metadata and controls
41 lines (35 loc) · 955 Bytes
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import styled from 'styled-components';
import { Text, Button } from '@lidofinance/lido-ui';
export const Wrapper = styled.div`
display: flex;
align-items: center;
gap: ${({ theme }) => theme.spaceMap.lg}px;
padding: ${({ theme }) => theme.spaceMap.md}px;
border-radius: 12px;
background-color: color-mix(
in display-p3,
${({ theme }) => theme.colors.warning} 20%,
transparent
);
`;
export const TitleContainer = styled.div`
display: flex;
align-items: center;
gap: ${({ theme }) => theme.spaceMap.xs}px;
`;
export const InfoContainer = styled.div`
display: flex;
flex-direction: column;
gap: ${({ theme }) => theme.spaceMap.sm}px;
flex-grow: 1;
`;
export const ListOfUpdates = styled.div`
display: flex;
flex-direction: column;
`;
export const TextStyled = styled(Text)`
line-height: 20px;
`;
export const ModalButton = styled(Button)`
background-color: ${({ theme }) => theme.colors.foreground};
`;