Skip to content

Commit 4f02966

Browse files
committed
css changes
1 parent 4c4d1cf commit 4f02966

File tree

3 files changed

+20
-8
lines changed

3 files changed

+20
-8
lines changed
Lines changed: 3 additions & 3 deletions
Loading

gui/src/components/CustomContainers/container.module.css

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
display: flex;
2626
flex-direction: row;
2727
gap: 4px;
28-
padding: 8px;
28+
padding: 4px;
2929
border-bottom: 1px solid var(--white-opacity-8);
3030
cursor: pointer;
3131
}
@@ -38,8 +38,20 @@
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
}

gui/src/components/WorkBenchComponents/Browser.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)