Skip to content

Commit 242d6bf

Browse files
committed
More styling
1 parent 63a0d72 commit 242d6bf

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
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.1.66",
3+
"version": "0.1.67",
44
"main": "dist/main.js",
55
"typings": "dist/index.d.ts",
66
"files": [

src/components/Modals/Modal.styles.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ export const StyledModalRowDataText = styled.div`
141141
flex-direction: row;
142142
align-items: flex-start;
143143
background: none;
144-
margin: 0 10px 0 10px;
144+
margin: 2px 10px;
145145
`;
146146

147147
interface StyledModalRowDataTextTitleProps {

src/components/Modals/Modal.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,9 @@ export const ModalActionList = ({
397397
{isOpen === entry.name && (
398398
<StyledModalActionEntry
399399
color={theme.palette.text}
400-
entryColor={theme.palette.primary}
400+
entryColor={
401+
selected ? theme.palette.secondary : theme.palette.primary
402+
}
401403
hoverColor={theme.palette.secondary}
402404
deleteColor={theme.palette.button.error}
403405
roundness={theme.roundness}

0 commit comments

Comments
 (0)