File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -93,3 +93,4 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
9393- removed unused function in api/register.js
9494- adjusted contact form message on mobile
9595- blog container and title styling
96+ - blog card container tags overflowing
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ export default function Card({
3131 </ h2 >
3232 { tagList && tagList . length > 0 ? (
3333 < div className = { styles . tagListContainer } >
34- { tagList . map ( ( tag , i ) => (
34+ { tagList . slice ( 0 , 8 ) . map ( ( tag , i ) => (
3535 < Tag key = { i } text = { tag } />
3636 ) ) }
3737 </ div >
Original file line number Diff line number Diff line change 131131
132132 .tagListContainer {
133133 display : flex ;
134+ flex-wrap : wrap ;
135+ max-height : 12rem ;
136+ overflow : hidden ;
134137 gap : 0.5rem ;
135138 margin-bottom : -1rem ;
136139 }
You can’t perform that action at this time.
0 commit comments