Skip to content

Commit

Permalink
style(settings): fix some sizes and bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
ph1p committed Nov 7, 2021
1 parent c39bad9 commit 7120318
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
Binary file modified .yarn/install-state.gz
Binary file not shown.
4 changes: 2 additions & 2 deletions packages/plugin/src/components/Resizer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ const ResizerElement = styled.div`
left: 2px;
width: 10px;
height: 1px;
background-color: rgb(205, 205, 205);
box-shadow: 0px 3px 0px 0px rgb(205, 205, 205);
background-color: ${(p) => p.theme.secondaryFontColor};
box-shadow: 0px 3px 0px 0px ${(p) => p.theme.secondaryFontColor};
}
`;
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,8 @@ const AvatarColorPickerAction = styled.div<{ color: string }>`
align-self: center;
font-size: 39px;
line-height: 75px;
box-shadow: 0 0 0 15px ${(p) => rgba(p.color, 0.1)},
0 0 0 35px ${(p) => rgba(p.color, 0.08)};
box-shadow: 0 0 0 12px ${(p) => rgba(p.color, 0.2)},
0 0 0 30px ${(p) => rgba(p.color, 0.1)};
`;

const ItemWrapper = styled.div`
Expand Down
5 changes: 3 additions & 2 deletions packages/plugin/src/views/Settings/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ const SettingsView: FunctionComponent = observer(() => {
saveSettings(settings.url !== store.settings.url);
}}
>
<strong>(reset)</strong>
<strong>reset</strong>
</span>
</label>
<input
Expand Down Expand Up @@ -335,9 +335,10 @@ const Settings = styled.div`
font-size: 10px;
cursor: pointer;
}
a {
a, .link {
color: ${(p) => p.theme.inputColor};
font-weight: bold;
text-decoration: underline;
}
label {
margin: 0 0 5px;
Expand Down

0 comments on commit 7120318

Please sign in to comment.