~cytrogen/masto-fe

38753acaa562d6d69dcb0688a57a37655cb094ea — Claire 2 years ago 1bd7455
Fix width of large text icon buttons (#27127)

1 files changed, 1 insertions(+), 1 deletions(-)

M app/javascript/mastodon/features/compose/components/text_icon_button.jsx
M app/javascript/mastodon/features/compose/components/text_icon_button.jsx => app/javascript/mastodon/features/compose/components/text_icon_button.jsx +1 -1
@@ 4,7 4,7 @@ import { PureComponent } from 'react';
const iconStyle = {
  height: null,
  lineHeight: '27px',
  width: `${18 * 1.28571429}px`,
  minWidth: `${18 * 1.28571429}px`,
};

export default class TextIconButton extends PureComponent {