diff --git a/src/containers/SpeedSend/SpeedSendList/SpeedSendList.module.css b/src/containers/SpeedSend/SpeedSendList/SpeedSendList.module.css index e69de29bb..1393a40cc 100644 --- a/src/containers/SpeedSend/SpeedSendList/SpeedSendList.module.css +++ b/src/containers/SpeedSend/SpeedSendList/SpeedSendList.module.css @@ -0,0 +1,48 @@ +.SpeedSendIcon { + width: 29px; + height: 29px; +} + +.LabelContainer { + display: flex; + flex-direction: column; + row-gap: 0.5rem; +} + +.LabelText { + font-weight: 500; + font-size: 17px; + word-break: break-all; +} + +.TableText { + text-align: left; + font-size: 14px; + color: #93a29b; + white-space: pre-line; + margin: 0; + padding: 0; +} + +.LastModified { + width: 20%; + min-width: 185px; + color: #93a29b; +} + +.Name { + width: 25%; + min-width: 200px; +} + +.Body { + width: 36%; + min-width: 200px; + word-break: break-word; +} + +.Actions { + width: 19%; + min-width: 200px; + text-align: end; +} diff --git a/src/containers/SpeedSend/SpeedSendList/SpeedSendList.tsx b/src/containers/SpeedSend/SpeedSendList/SpeedSendList.tsx index 2a5f49d88..5da9bbe2a 100644 --- a/src/containers/SpeedSend/SpeedSendList/SpeedSendList.tsx +++ b/src/containers/SpeedSend/SpeedSendList/SpeedSendList.tsx @@ -56,7 +56,7 @@ export const SpeedSendList = () => { let columnStyles: any = [styles.Name, styles.Body, styles.LastModified, styles.Actions]; - const getColumns = ({ id, language, label, body, updatedAt, translations, category }: any) => { + const getColumns = ({ id, language, label, body, updatedAt, translations }: any) => { const columns: any = { id, label: getLabel(label),