aboutsummaryrefslogtreecommitdiffstats
path: root/src/features
diff options
context:
space:
mode:
authorLibravatar Dominik Guzei <dominik.guzei@gmail.com>2019-04-04 16:18:33 +0200
committerLibravatar Dominik Guzei <dominik.guzei@gmail.com>2019-04-04 16:18:33 +0200
commit387c73b2e6463238dc1c9c9ccde3c0e16ff33121 (patch)
tree69c440feefdaaddf53f8bd07ae39075edede4c18 /src/features
parentfix issues for users that have workspace but downgraded to free (diff)
downloadferdium-app-387c73b2e6463238dc1c9c9ccde3c0e16ff33121.tar.gz
ferdium-app-387c73b2e6463238dc1c9c9ccde3c0e16ff33121.tar.zst
ferdium-app-387c73b2e6463238dc1c9c9ccde3c0e16ff33121.zip
border radius for premium intro in workspace settings
Diffstat (limited to 'src/features')
-rw-r--r--src/features/workspaces/components/WorkspacesDashboard.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/features/workspaces/components/WorkspacesDashboard.js b/src/features/workspaces/components/WorkspacesDashboard.js
index 18813e267..a8b3b376c 100644
--- a/src/features/workspaces/components/WorkspacesDashboard.js
+++ b/src/features/workspaces/components/WorkspacesDashboard.js
@@ -48,7 +48,7 @@ const messages = defineMessages({
48 }, 48 },
49}); 49});
50 50
51const styles = () => ({ 51const styles = (theme) => ({
52 createForm: { 52 createForm: {
53 height: 'auto', 53 height: 'auto',
54 }, 54 },
@@ -62,6 +62,7 @@ const styles = () => ({
62 marginBottom: '20px', 62 marginBottom: '20px',
63 height: 'auto', 63 height: 'auto',
64 color: 'white', 64 color: 'white',
65 borderRadius: theme.borderRadius,
65 }, 66 },
66}); 67});
67 68