Skip to content

Commit c05e81d

Browse files
committed
Add style changes
1 parent 4cabec0 commit c05e81d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-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.64",
3+
"version": "0.1.65",
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
@@ -152,6 +152,7 @@ interface StyledModalRowDataTextTitleProps {
152152

153153
export const StyledModalRowDataTextTitle = styled.li<StyledModalRowDataTextTitleProps>`
154154
color: ${(p) => p.color ?? primaryColor};
155+
list-style-position: inside;
155156
`;
156157

157158
export const StyledModalRowDataTextEntries = styled.div`
@@ -201,7 +202,6 @@ interface StyledModalImageRowProps {
201202
}
202203

203204
export const StyledModalImageRow = styled.div<StyledModalImageRowProps>`
204-
width: 100%;
205205
margin: 10px;
206206
background-color: ${(p) => p.color ?? primaryColor};
207207
border-radius: ${(p) => p.roundness ?? 1}px;

src/components/Modals/Modal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ export const ModalRow = ({
194194
case "img":
195195
return (
196196
<StyledModalImageRow
197-
color={theme.palette.text}
197+
color={theme.palette.primary}
198198
roundness={theme.roundness}
199199
id={id}
200200
>

0 commit comments

Comments
 (0)