Reputation: 1084
using styled components to create an accordion of sorts - really struggling to nail down the styling. Everything is ok other than the icon height (should be level with the title "Goods being sent") margin-right of 12px is perfect. Another question I have is that when the text within the span expands over more than one line, then every line following the first is indented to the left?
codepen: https://codepen.io/simoncunningham/pen/rNyeBYb
const Accordion = styled.div`
background-color: #e5e9eb;
height: 87px;
width: 612px;
border-radius: 2px;
border: 1px solid #27282a;
margin-bottom: 48px;
span {
font-size: 14px;
line-height: 20px;
padding-left: 24px;
}
`;
const AccordionExpanded = styled.div`
background-color: #e5e9eb;
height: 174px;
width: 612px;
border-radius: 2px;
border: 1px solid #27282a;
margin-bottom: 48px;
span {
font-size: 14px;
line-height: 20px;
padding-left: 24px;
}
`;
const Title = styled.h3`
font-size: 12px;
letter-spacing: 1px;
text-transform: uppercase;
padding-left: 24px;
padding-top: 20px;
padding-bottom: 0px;
`;
const ExpandIcon = styled.img`
height: 40px;
width: 40px;
float: right;
margin-right: 12px;
`;
const CollapseIcon = styled.img`
height: 40px;
width: 40px;
float: right;
margin-right: 12px;
-webkit-transform: rotate(180deg);
`;
const ExpandableString = ({ attribute, className }: Props) => {
const [isExpanded, setIsExpanded] = React.useState(false);
const fullDescription = attribute.readonlyvalue;
const shortHeading = fullDescription.substring(0, 40) + '...';
function toggleContent() {
setIsExpanded(prev => !prev);
}
return (
isExpanded ? <AccordionExpanded className={className}>
<Title>Goods being sent</Title>
<span>{fullDescription}</span>
<CollapseIcon onClick={toggleContent} src={chevron} alt="Collapse content" aria-label="Collapse content" />
</AccordionExpanded> : <Accordion className={className}>
<Title>Goods being sent</Title>
<span>{shortHeading}</span>
<ExpandIcon onClick={toggleContent} src={chevron} alt="Expand content" aria-label="Expand content" />
</Accordion>
);
};
Upvotes: 0
Views: 861
Reputation: 3524
If you want to icon level to be same as the div.title, just put the span.icon inside to the div.title. float:right
will take care of the rest
For the multi-line problem with your span. Just add display: block;
to your content span's class.
Here is the end result;
.accordion {
background-color: #e5e9eb;
height: 87px;
width: 612px;
border-radius: 2px;
border: 1px solid #27282a;
margin-bottom: 48px;
}
.accordion span {
font-size: 14px !important;
padding-left: 24px;
display: block;
}
.title {
font-size: 12px;
letter-spacing: 1px;
text-transform: uppercase;
padding-left: 24px;
padding-top: 20px;
padding-bottom: 0px;
}
.icon {
height: 40px;
width: 40px;
float: right;
margin-right: 12px;
background-color: red;
}
<div class="accordion">
<div class="title">
<div class="icon"></div>
Goods being sent
</div>
<span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur quis risus et diamaaw sollicitudin suscipit non vel justo. Morbi vel enim sit amet erat blandit pellentesque.</span>
</div>
Upvotes: 2