Skip to content

Commit

Permalink
[DOP-21930] edit styles in table and header (#51)
Browse files Browse the repository at this point in the history
Co-authored-by: Zabilsya <[email protected]>
  • Loading branch information
Zabilsya and Zabilsya authored Dec 10, 2024
1 parent 967fa7b commit 6c89158
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
4 changes: 4 additions & 0 deletions src/app/styles/antd.less
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,7 @@
.ant-modal-title {
font-weight: 700;
}

.ant-table-cell {
word-break: break-word;
}
4 changes: 3 additions & 1 deletion src/widgets/layout/Header/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ export const Header = () => {
{/* TODO: [DOP-20026] Need to add logo */}
<div className={classes.main}>
<div className={classes.logo} />
<SelectGroup />
<div className={classes.select}>
<SelectGroup />
</div>
</div>
<div className={classes.user}>
<div className={classes['user-info']}>
Expand Down
5 changes: 4 additions & 1 deletion src/widgets/layout/Header/styles.module.less
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,14 @@
.main {
display: flex;
align-items: center;
width: 500px;

.logo {
min-width: 200px;
}

.select {
width: 300px;
}
}

.user {
Expand Down

0 comments on commit 6c89158

Please sign in to comment.