summaryrefslogtreecommitdiffhomepage
path: root/gui/src/renderer/components/AppButton.tsx
diff options
context:
space:
mode:
authorOskar Nyberg <oskar@mullvad.net>2023-10-24 13:34:02 +0200
committerOskar Nyberg <oskar@mullvad.net>2023-10-30 18:03:44 +0100
commitdb89a8d51de88ca08599fa331f6376ef477d15e8 (patch)
tree6f484297196d8cd377d090f69aff12d3c51ea5a4 /gui/src/renderer/components/AppButton.tsx
parent754b15058eaf37dba76387f803e623a94698242f (diff)
downloadmullvadvpn-db89a8d51de88ca08599fa331f6376ef477d15e8.tar.xz
mullvadvpn-db89a8d51de88ca08599fa331f6376ef477d15e8.zip
Adjust codebase to breaking changes in styled components v6
Diffstat (limited to 'gui/src/renderer/components/AppButton.tsx')
-rw-r--r--gui/src/renderer/components/AppButton.tsx16
1 files changed, 8 insertions, 8 deletions
diff --git a/gui/src/renderer/components/AppButton.tsx b/gui/src/renderer/components/AppButton.tsx
index 45c93e1b2a..753f64745e 100644
--- a/gui/src/renderer/components/AppButton.tsx
+++ b/gui/src/renderer/components/AppButton.tsx
@@ -22,7 +22,7 @@ interface ILabelProps {
}
export function Label(props: ILabelProps) {
- return <StyledLabel textOffset={props.textOffset ?? 0}>{props.children}</StyledLabel>;
+ return <StyledLabel $textOffset={props.textOffset ?? 0}>{props.children}</StyledLabel>;
}
interface IIconProps {
@@ -108,7 +108,7 @@ const StyledSimpleButton = styled(SimpleButton)({
borderRadius: 4,
border: 'none',
padding: 0,
- ':disabled': {
+ '&&:disabled': {
opacity: 0.5,
},
});
@@ -156,35 +156,35 @@ export function BlockingButton(props: IBlockingProps) {
export const RedButton = styled(BaseButton)({
backgroundColor: colors.red,
- ':not(:disabled):hover': {
+ '&&:not(:disabled):hover': {
backgroundColor: colors.red95,
},
});
export const GreenButton = styled(BaseButton)({
backgroundColor: colors.green,
- ':not(:disabled):hover': {
+ '&&:not(:disabled):hover': {
backgroundColor: colors.green90,
},
});
export const BlueButton = styled(BaseButton)({
backgroundColor: colors.blue80,
- ':not(:disabled):hover': {
+ '&&:not(:disabled):hover': {
backgroundColor: colors.blue60,
},
});
export const TransparentButton = styled(BaseButton)(transparentButton, {
backgroundColor: colors.white20,
- ':not(:disabled):hover': {
+ '&&:not(:disabled):hover': {
backgroundColor: colors.white40,
},
});
export const RedTransparentButton = styled(BaseButton)(transparentButton, {
backgroundColor: colors.red60,
- ':not(:disabled):hover': {
+ '&&:not(:disabled):hover': {
backgroundColor: colors.red80,
},
});
@@ -193,7 +193,7 @@ const StyledButtonWrapper = styled.div({
display: 'flex',
flexDirection: 'column',
flex: 0,
- ':not(:last-child)': {
+ '&&:not(:last-child)': {
marginBottom: measurements.buttonVerticalMargin,
},
});