|
|
@@ -156,7 +156,7 @@ const stylesheet = StyleSheet.create({
|
|
|
},
|
|
|
title: {
|
|
|
textAlign: "center",
|
|
|
- margin: "0"
|
|
|
+ margin: 0
|
|
|
},
|
|
|
loading: {},
|
|
|
overlay: {
|
|
|
@@ -245,12 +245,12 @@ export const useStyles = ({
|
|
|
|
|
|
if (isLoading && spreadBehaviour === "stretch") {
|
|
|
styles.title.marginLeft = spaces.spacingSm;
|
|
|
- styles.title.margin = "initial";
|
|
|
+ styles.title.margin = undefined;
|
|
|
}
|
|
|
|
|
|
if (icon && !isLoading) {
|
|
|
styles.title.marginLeft = spaces.spacingSm;
|
|
|
- styles.title.margin = "initial";
|
|
|
+ styles.title.margin = undefined;
|
|
|
}
|
|
|
|
|
|
if (spreadBehaviour === "baseline") {
|