Skip to content

Commit e485d9d

Browse files
feat: update styles
1 parent c590825 commit e485d9d

File tree

11 files changed

+16
-9
lines changed

11 files changed

+16
-9
lines changed

src/components/Modal/Modal.styled.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ export const StyledBox = styled(Box)(
1313
padding: 40px;
1414
max-width: 400px;
1515
width: 90%;
16+
border-radius: 8px;
1617
1718
@media (min-width: 768px) {
1819
max-width: 480px;

src/pages/home/Home.styled.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ export const BaseLayoutElement = styled.div(
6767
border-color ${custom.sys.transitions.color};
6868
margin: 0;
6969
padding: 10px;
70+
border-radius: 8px;
7071
`
7172
);
7273

src/pages/home/sections/Callstack/Callstack.styled.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export const CallstackElement = styled.div(
2222
transition: background-color ${custom.sys.transitions.color};
2323
animation: ${custom.sys.animations.zoomIn};
2424
border: 1px solid ${custom.sys.colors.border};
25-
border-radius: 5px;
25+
border-radius: 4px;
2626
padding: 10px;
2727
word-wrap: break-word;
2828
word-break: break-word;

src/pages/home/sections/Configurator/Editor/Editor.styled.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ export const EditorWrapper = styled.div(
1717
}
1818
}
1919
20+
.ace_editor {
21+
border-radius: 8px;
22+
}
23+
2024
.ace_gutter {
2125
background: ${sys.colors.onContainer.dim};
2226
transition: background-color ${sys.transitions.color};

src/pages/home/sections/Console/Console.styled.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export const Log = styled.div(
2424
transition: background-color ${sys.transitions.color};
2525
animation: ${sys.animations.zoomIn};
2626
border: 1px solid ${sys.colors.border};
27-
border-radius: 5px;
27+
border-radius: 4px;
2828
padding: 10px;
2929
word-wrap: break-word;
3030
display: flex;

src/pages/home/sections/EventLoop/Wheel/Wheel.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ function Wheel() {
2828
pointer: com.wheel.pointer,
2929
wheel: com.wheel.background,
3030
background: sys.colors.container,
31+
border: sys.colors.border,
3132
microtask: {
3233
disabled: com.wheel.microtask.dim,
3334
enabled: com.wheel.microtask.contrast,

src/pages/home/sections/MicroTasksQueue/MicroTasksQueue.styled.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export const MicroTask = styled.div(
1919
display: flex;
2020
justify-content: center;
2121
align-items: center;
22-
border-radius: 5px;
22+
border-radius: 4px;
2323
max-width: 33.33%;
2424
padding: 10px;
2525
word-wrap: break-word;

src/pages/home/sections/RequestAnimationFrameQueue/RequestAnimationFrameQueue.styled.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export const Callback = styled.div(
1919
display: flex;
2020
justify-content: center;
2121
align-items: center;
22-
border-radius: 5px;
22+
border-radius: 4px;
2323
max-width: 33.33%;
2424
padding: 10px;
2525
word-wrap: break-word;

src/pages/home/sections/TasksQueue/TasksQueue.styled.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export const Task = styled.div(
2323
display: flex;
2424
justify-content: center;
2525
align-items: center;
26-
border-radius: 5px;
26+
border-radius: 4px;
2727
max-width: 33.33%;
2828
padding: 10px;
2929
word-wrap: break-word;

src/pages/home/sections/WebApiQueue/WebApiTask.styled.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export const WebApiItem = styled.div(
99
}) => css`
1010
background: ${com.queueElement.background};
1111
transition: background-color ${sys.transitions.color};
12-
border-radius: 5px;
12+
border-radius: 4px;
1313
padding: 10px;
1414
position: absolute;
1515
word-wrap: break-word;
@@ -33,7 +33,7 @@ export const Progress = styled.div<{ progress: number }>(
3333
);
3434
transition: background-color ${custom.sys.transitions.color};
3535
animation: ${custom.sys.animations.zoomIn};
36-
border-radius: 5px;
36+
border-radius: 4px;
3737
position: relative;
3838
padding: 10px;
3939
display: flex;

0 commit comments

Comments
 (0)