aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/ui/PremiumFeatureContainer/styles.js
blob: 41881e044939992ad34ea31fa88fce0a488c29dc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
export default theme => ({
  container: {
    background: theme.colorSubscriptionContainerBackground,
    border: theme.colorSubscriptionContainerBorder,
    margin: [0, 0, 20, -20],
    padding: 20,
    'border-radius': theme.borderRadius,
    pointerEvents: 'none',
    height: 'auto',
  },
  titleContainer: {
    display: 'flex',
  },
  title: {
    'font-weight': 'bold',
    color: theme.colorSubscriptionContainerTitle,
  },
  actionButton: {
    background: theme.colorSubscriptionContainerActionButtonBackground,
    color: theme.colorSubscriptionContainerActionButtonColor,
    'margin-left': 'auto',
    'border-radius': theme.borderRadiusSmall,
    padding: [4, 8],
    'font-size': 12,
    pointerEvents: 'initial',
  },
  content: {
    opacity: 0.5,
    'margin-top': 20,
    '& > :last-child': {
      'margin-bottom': 0,
    },
  },
});