From a81f62ca52e318c3af8581a920773b2077c53ba6 Mon Sep 17 00:00:00 2001
From: mgabdev <>
Date: Fri, 24 Jul 2020 18:51:57 -0500
Subject: [PATCH] Updated ProPanel styles
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
• Updated:
- ProPanel styles
---
.../gabsocial/components/panel/pro_panel.js | 51 ++++++++++++-------
1 file changed, 34 insertions(+), 17 deletions(-)
diff --git a/app/javascript/gabsocial/components/panel/pro_panel.js b/app/javascript/gabsocial/components/panel/pro_panel.js
index 86e44f96..9fbf9f6d 100644
--- a/app/javascript/gabsocial/components/panel/pro_panel.js
+++ b/app/javascript/gabsocial/components/panel/pro_panel.js
@@ -2,6 +2,7 @@ import { injectIntl, defineMessages } from 'react-intl'
import { URL_GAB_PRO } from '../../constants'
import PanelLayout from './panel_layout';
import Button from '../button'
+import Icon from '../icon'
import Text from '../text'
const messages = defineMessages({
@@ -23,28 +24,44 @@ class ProPanel extends PureComponent {
if (isPro) return null
+ const title = (
+
+
+ Upgrade to Gab
+
+ PRO
+
+ )
+
return (
-
+
+ Learn more
+
+
+
+
+ Upgrade
+
+
+
+
+
)
}