File tree 4 files changed +5
-4
lines changed
components/DataView/styled
4 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import styled from "@emotion/styled";
2
2
import { CircularProgress } from "@mui/material" ;
3
3
4
4
export const DataViewStyled = styled . div `
5
- background: ${ ( props ) => props . theme . viewBg } ;
5
+ background: ${ ( props ) => props . theme . mainBgColor } ;
6
6
margin: 6px 8px;
7
7
overflow-y: scroll;
8
8
overflow-x: hidden;
Original file line number Diff line number Diff line change @@ -13,13 +13,13 @@ import { TabsUnstyled } from "@mui/base";
13
13
export const StyledDrawer = styled ( ( props ) => (
14
14
< Drawer
15
15
anchor = { "bottom" }
16
- style = { { maxHeight : "250px" } }
16
+ style = { { maxHeight : "250px" , } }
17
17
variant = { "persistent" }
18
18
{ ...props }
19
19
/>
20
20
) ) ( ( { theme } ) => ( {
21
21
"& .MuiPaper-root" : {
22
- borderTop : "none" ,
22
+ borderTop :`1px solid ${ theme . buttonBorder } ` ,
23
23
} ,
24
24
} ) ) ;
25
25
Original file line number Diff line number Diff line change @@ -29,6 +29,7 @@ const StyledMenu = styled((props) => (
29
29
marginTop : theme . spacing ( 1 ) ,
30
30
minWidth : 180 ,
31
31
color :clokitheme . textColor ,
32
+ border : `1px solid ${ clokitheme . buttonBorder } ` ,
32
33
backgroundColor : clokitheme . buttonDefault ,
33
34
"& .MuiMenu-list" : {
34
35
padding : "4px 0" ,
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ const typography = {
56
56
const orange = {
57
57
or100 : "hsl(39, 100%, 50%)" ,
58
58
} ;
59
- const mainBgColor = white . w500 ;
59
+ const mainBgColor = white . w100 ;
60
60
const logBgColor = white . w100 ;
61
61
const tabActive = white . w100 ;
62
62
const tabHeader = white . b400 ;
You can’t perform that action at this time.
0 commit comments