Skip to content

Commit 70e01b4

Browse files
committed
Change min styles
1 parent 379c292 commit 70e01b4

File tree

5 files changed

+5
-1
lines changed

5 files changed

+5
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jderobot-ide-interface",
3-
"version": "0.2.06",
3+
"version": "0.2.07",
44
"main": "dist/main.js",
55
"typings": "dist/index.d.ts",
66
"files": [

src/components/Explorer/Explorer.styles.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ export const StyledSidebarEntryMenu = styled.div<StyledSidebarEntryMenuProps>`
2727
display: flex;
2828
align-items: center;
2929
height: 32px;
30+
min-height: 32px;
3031
padding: 0 10px 0 10px;
3132
gap: 5px;
3233
background-color: ${(p) => p.bgColor ?? primaryColor};

src/components/FileEditor/FileEditor.styles.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ export const StyledEditorMenu = styled.div<StyledEditorMenuProps>`
1313
padding-left: 10px;
1414
height: 32px;
1515
max-height: 32px;
16+
min-height: 32px;
1617
width: 100%;
1718
background-color: ${(p) => p.bgColor ?? primaryColor};
1819
`;

src/components/IdeInterface/IdeInterface.styles.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ export const StyledViewerMenu = styled.div<StyledViewerMenuProps>`
5858
height: 32px;
5959
justify-content: space-between;
6060
max-height: 32px;
61+
min-height: 32px;
6162
width: 100%;
6263
z-index: 5;
6364
padding-left: 10px;

src/components/Modals/ErrorModal.styles.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ export const StyledModalErrorRow = styled.div<StyledModalErrorRowProps>`
8686
& label {
8787
font-weight: 600;
8888
text-align: center;
89+
white-space: pre-wrap;
8990
}
9091
9192
${handleVariant}

0 commit comments

Comments
 (0)