File size: 966 Bytes
1e92f2d |
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 42 43 44 45 46 47 48 49 50 51 52 53 54 |
// @flow
import theme from 'shared/theme';
import styled from 'styled-components';
export const TokenInputWrapper = styled.div`
position: relative;
cursor: pointer;
input {
cursor: pointer;
}
&:after {
content: 'Copy link';
position: absolute;
right: 8px;
top: 50%;
transform: translateY(-50%);
font-size: 10px;
text-transform: uppercase;
color: ${theme.text.reverse};
background: ${theme.text.alt};
padding: 4px 8px;
border-radius: 4px;
font-weight: 700;
}
&:hover {
&:after {
background: ${theme.success.alt};
}
}
`;
export const MessageIconContainer = styled.div`
color: ${theme.text.alt};
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
&:hover {
color: ${theme.brand.alt};
}
`;
export const UserListItemContainer = styled.div`
border-bottom: 1px solid ${theme.bg.wash};
&:last-of-type {
border-bottom: none;
}
`;
|