Skip to content

Commit

Permalink
styling fixes for speed sends
Browse files Browse the repository at this point in the history
  • Loading branch information
kurund committed Jan 3, 2025
1 parent 27742a7 commit 78a5145
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 1 deletion.
48 changes: 48 additions & 0 deletions src/containers/SpeedSend/SpeedSendList/SpeedSendList.module.css
Original file line number Diff line number Diff line change
@@ -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;
}
2 changes: 1 addition & 1 deletion src/containers/SpeedSend/SpeedSendList/SpeedSendList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand Down

0 comments on commit 78a5145

Please sign in to comment.