mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-17 20:32:56 +00:00
Add Padding to inline styles for spoiler
This commit is contained in:
parent
8f18c8f9ad
commit
ebe5095665
|
@ -88,10 +88,11 @@ const StatusContent = React.createClass({
|
||||||
const spoilerContent = { __html: emojify(status.get('spoiler_text', '')) };
|
const spoilerContent = { __html: emojify(status.get('spoiler_text', '')) };
|
||||||
const spoilerStyle = {
|
const spoilerStyle = {
|
||||||
backgroundColor: '#fff',
|
backgroundColor: '#fff',
|
||||||
borderRadius: '0 4px',
|
borderRadius: '4px',
|
||||||
color: '#363c4b',
|
color: '#363c4b',
|
||||||
fontWeight: '500',
|
fontWeight: '500',
|
||||||
fontSize: '12px',
|
fontSize: '12px',
|
||||||
|
padding: '0 4px',
|
||||||
textTransform: 'uppercase'
|
textTransform: 'uppercase'
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue