Fix descriptions on cards

This commit is contained in:
KingRainbow44 2023-04-09 19:27:42 -04:00
parent d4936abb37
commit efcf124003
No known key found for this signature in database
GPG Key ID: FC2CB64B00D257BE
2 changed files with 3 additions and 5 deletions

View File

@ -7,7 +7,6 @@
max-width: 1510px;
max-height: 100px;
gap: 10px;
border-radius: 15px;
padding: 10px;
box-sizing: border-box;
@ -21,7 +20,6 @@
width: 100%;
height: 100%;
max-height: 40%;
gap: 15px;
align-items: center;
@ -39,6 +37,6 @@
.Card_Description {
color: var(--text-primary-color);
overflow-y: hidden;
max-height: 100%;
overflow-y: scroll;
max-height: 24px;
}

View File

@ -33,7 +33,7 @@ class Card extends React.PureComponent<IProps> {
{this.props.alternate && <p className={"Card_Alternate"}>{this.props.alternate}</p>}
</div>
<div style={{ height: "50%", alignItems: "center" }}>
<div style={{ alignItems: "center" }}>
{this.props.description ? (
Array.isArray(this.props.description) ? (
this.props.description.map((line, index) => (