Skip to content
This repository was archived by the owner on Apr 5, 2022. It is now read-only.

Commit 8382320

Browse files
committed
CJPM-17497: Style changes per UX team.
1 parent b4970a9 commit 8382320

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

packages/visual-stack/src/components/Table/DataTable/DataTable.css

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@
2828
min-height: 32px;
2929
padding: 4px 8px;
3030
vertical-align: bottom;
31+
border-bottom: 2px solid #D8DCDF;
32+
color: #757575;
3133
}
3234

3335
.vs-data-table-container .vs-tbody .vs-cell {

packages/visual-stack/src/components/Table/DataTable/index.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import React from 'react';
2-
import './DataTable.css';
32
import {
43
TableContainer,
54
TableTitle,

packages/visual-stack/src/components/TopNav/TopNav.css

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,18 +46,17 @@
4646
z-index: 10;
4747
}
4848

49-
.vs-topnav-content p {
49+
.vs-topnav-content {
5050
max-width: 580px;
51+
padding: 24px;
5152
}
5253

5354
.vs-topnav-content-normal {
5455
max-width: 800px;
55-
padding: 112px 24px 24px;
5656
}
5757

5858
.vs-topnav-content-wide {
5959
max-width: 100%;
60-
padding: 112px 48px 48px;
6160
}
6261

6362
.vs-topnav-button-bar .vs-text-btn {

packages/visual-stack/src/components/TopNav/TopNav.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export const TopNav = ({
2525
{actionChildren}
2626
</div>
2727
</div>
28-
<div className={cn('vs-topnav-content', `vs-topnav-content-${contentSize ? contentSize : ''}`)}>
28+
<div className={cn('vs-topnav-content', `vs-topnav-content-${contentSize ? contentSize : 'normal'}`)}>
2929
{children}
3030
</div>
3131
</div>

0 commit comments

Comments
 (0)