From e7daa9627e6ac11941c90c0f24c2578680bc6e7d Mon Sep 17 00:00:00 2001 From: Zabilsya Date: Tue, 10 Dec 2024 15:12:13 +0600 Subject: [PATCH] [DOP-21930] edit styles in table and header --- src/app/styles/antd.less | 4 ++++ src/widgets/layout/Header/index.tsx | 4 +++- src/widgets/layout/Header/styles.module.less | 5 ++++- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/src/app/styles/antd.less b/src/app/styles/antd.less index b10f3b3f..cf0d0a40 100644 --- a/src/app/styles/antd.less +++ b/src/app/styles/antd.less @@ -21,3 +21,7 @@ .ant-modal-title { font-weight: 700; } + +.ant-table-cell { + word-break: break-word; +} diff --git a/src/widgets/layout/Header/index.tsx b/src/widgets/layout/Header/index.tsx index 5dced64d..895efe46 100644 --- a/src/widgets/layout/Header/index.tsx +++ b/src/widgets/layout/Header/index.tsx @@ -19,7 +19,9 @@ export const Header = () => { {/* TODO: [DOP-20026] Need to add logo */}
- +
+ +
diff --git a/src/widgets/layout/Header/styles.module.less b/src/widgets/layout/Header/styles.module.less index 636b4ca1..be917844 100644 --- a/src/widgets/layout/Header/styles.module.less +++ b/src/widgets/layout/Header/styles.module.less @@ -6,11 +6,14 @@ .main { display: flex; align-items: center; - width: 500px; .logo { min-width: 200px; } + + .select { + width: 300px; + } } .user {