Browse Source

Add Padding to inline styles for spoiler

closed-social-glitch-2
Anthony Bellew 7 years ago
committed by GitHub
parent
commit
ebe5095665
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      app/assets/javascripts/components/components/status_content.jsx

+ 2
- 1
app/assets/javascripts/components/components/status_content.jsx View File

@ -88,10 +88,11 @@ const StatusContent = React.createClass({
const spoilerContent = { __html: emojify(status.get('spoiler_text', '')) };
const spoilerStyle = {
backgroundColor: '#fff',
borderRadius: '0 4px',
borderRadius: '4px',
color: '#363c4b',
fontWeight: '500',
fontSize: '12px',
padding: '0 4px',
textTransform: 'uppercase'
};

Loading…
Cancel
Save