2022-01-04 18:00:15 +01:00
|
|
|
import styled from 'styled-components';
|
|
|
|
|
|
|
|
const StyledWrapper = styled.div`
|
2022-01-06 19:37:32 +01:00
|
|
|
.create-request {
|
|
|
|
color: #737373;
|
|
|
|
font-size: 0.75rem;
|
|
|
|
}
|
|
|
|
|
2022-03-22 13:48:20 +01:00
|
|
|
.collection-options {
|
|
|
|
svg {
|
|
|
|
position: relative;
|
|
|
|
top: -1px;
|
|
|
|
}
|
2022-01-06 19:37:32 +01:00
|
|
|
|
2022-03-22 13:48:20 +01:00
|
|
|
.label {
|
|
|
|
cursor: pointer;
|
2022-01-06 19:37:32 +01:00
|
|
|
&:hover {
|
2022-03-22 13:48:20 +01:00
|
|
|
text-decoration: underline;
|
2022-01-06 19:37:32 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-01-04 18:00:15 +01:00
|
|
|
`;
|
|
|
|
|
|
|
|
export default StyledWrapper;
|