File tree Expand file tree Collapse file tree 3 files changed +20
-8
lines changed
Expand file tree Collapse file tree 3 files changed +20
-8
lines changed Original file line number Diff line number Diff line change 2525 display : flex;
2626 flex-direction : row;
2727 gap : 4px ;
28- padding : 8 px ;
28+ padding : 4 px ;
2929 border-bottom : 1px solid var (--white-opacity-8 );
3030 cursor : pointer;
3131}
3838 padding : 4px 8px ;
3939 gap : 8px ;
4040 border-radius : 8px ;
41+ overflow : hidden;
42+ text-overflow : ellipsis;
43+ font-family : "Proxima Nova" , sans-serif;
44+ font-size : 14px ;
45+ font-style : normal;
46+ font-weight : 400 ;
47+ line-height : 17px ;
48+ }
49+
50+ .tab_item {
51+ color : # 888 ;
4152}
4253
4354.tab_item_selected {
44- background : rgb (255 255 255 / 6% );
55+ background : var (--white-opacity-6 );
56+ color : # FFFF ;
4557}
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ export default function Browser({
1818 return (
1919 < div
2020 id = { 'browser' }
21- className = { 'flex w-full flex-col gap-[6px] border-none' }
21+ className = { 'flex w-full flex-col gap-1 border-none p-2 ' }
2222 >
2323 { showUrl && (
2424 < CustomInput
@@ -31,9 +31,9 @@ export default function Browser({
3131 />
3232 ) }
3333 < div
34- className = { 'relative w-full overflow-hidden' }
34+ className = { 'relative w-full overflow-hidden px-8 ' }
3535 style = { {
36- height : showUrl ? 'calc(30vh )' : 'calc(35vh)' ,
36+ height : showUrl ? 'calc(33vh )' : 'calc(35vh)' ,
3737 } }
3838 >
3939 < iframe
You can’t perform that action at this time.
0 commit comments