Merge pull request #521 from mirumee/fix/minor-bugs

Fix minor bugs
This commit is contained in:
Dominik Żegleń 2020-05-07 13:36:06 +02:00 committed by GitHub
commit 3f8c5b0c17
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 2 deletions

View file

@ -50,6 +50,7 @@ All notable, unreleased changes to this project will be documented in this file.
- Display Is Published column correctly in main Product Listing - #475 by @gabmartinez - Display Is Published column correctly in main Product Listing - #475 by @gabmartinez
- Add Permission Groups section - #406 by @krzysztofwolski - Add Permission Groups section - #406 by @krzysztofwolski
- Add warehouse management - #390 by @dominik-zeglen - Add warehouse management - #390 by @dominik-zeglen
- Fix minor visual bugs - #521 by @dominik-zeglen
## 2.0.0 ## 2.0.0

View file

@ -85,6 +85,7 @@ const useStyles = makeStyles<Theme, OrderFulfillPageProps, ClassKey>(
}, },
colSku: { colSku: {
textAlign: "right", textAlign: "right",
textOverflow: "ellipsis",
width: 150 width: 150
}, },
error: { error: {

View file

@ -147,7 +147,8 @@ export default (colors: IThemeColors): Theme =>
}, },
"&::placeholder": { "&::placeholder": {
opacity: "1 !important" as any opacity: "1 !important" as any
} },
color: colors.font.default
}, },
underline: { underline: {
"&:after": { "&:after": {
@ -198,7 +199,7 @@ export default (colors: IThemeColors): Theme =>
color: colors.primary color: colors.primary
} }
}, },
color: colors.input.text color: fade(colors.input.text, 0.6)
}, },
shrink: { shrink: {
// Negates x0.75 scale // Negates x0.75 scale