diff --git a/app/javascript/gabsocial/features/groups/index/index.js b/app/javascript/gabsocial/features/groups/index/index.js
index 14c44e37..d74dc979 100644
--- a/app/javascript/gabsocial/features/groups/index/index.js
+++ b/app/javascript/gabsocial/features/groups/index/index.js
@@ -50,7 +50,7 @@ class Groups extends ImmutablePureComponent {
return (
-
{intl.formatMessage(messages.create)}
+
{intl.formatMessage(messages.create)}
{intl.formatMessage(messages.heading)}
diff --git a/app/javascript/styles/gabsocial/components/buttons.scss b/app/javascript/styles/gabsocial/components/buttons.scss
index 36481aef..0270c1b7 100644
--- a/app/javascript/styles/gabsocial/components/buttons.scss
+++ b/app/javascript/styles/gabsocial/components/buttons.scss
@@ -1,16 +1,20 @@
-button {
+button,
+a.button {
&.standard {
+
+ // NOTE - will define the larger standard buttons here and apply class where used.
+
&-small {
- background: $gab-small-cta-primary;
- color: white;
- text-transform: uppercase;
- letter-spacing: 1px;
- font-size: 14px;
+ height: 20px;
+ padding: 5px 15px;
border: none;
border-radius: 4px;
- height: 25px;
- padding: 1px 12px;
- font-weight: bold;
+ @include font-size(11);
+ @include line-height(11);
+ @include font-weight(bold);
+ text-transform: uppercase;
+ color: white;
+ background: $gab-small-cta-primary;
}
}
}