about summary refs log tree commit diff
path: root/app/javascript/flavours/glitch/features/compose/components/warning.js
diff options
context:
space:
mode:
authorClaire <claire.github-309c@sitedethib.com>2022-11-06 13:30:37 +0100
committerClaire <claire.github-309c@sitedethib.com>2022-11-06 17:29:04 +0100
commit0be6da42d34f2a87864e0acab8836d3ac6463229 (patch)
treef4ad7926eea290f59657f219d7ef9cdb9630be56 /app/javascript/flavours/glitch/features/compose/components/warning.js
parentc199387558e0e0ec824b5e66c4a1e22e8b2e135b (diff)
Change glitch-soc composer classes to match upstream
Diffstat (limited to 'app/javascript/flavours/glitch/features/compose/components/warning.js')
-rw-r--r--app/javascript/flavours/glitch/features/compose/components/warning.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/flavours/glitch/features/compose/components/warning.js b/app/javascript/flavours/glitch/features/compose/components/warning.js
index 4009be8c6..803b7f86a 100644
--- a/app/javascript/flavours/glitch/features/compose/components/warning.js
+++ b/app/javascript/flavours/glitch/features/compose/components/warning.js
@@ -15,7 +15,7 @@ export default class Warning extends React.PureComponent {
     return (
       <Motion defaultStyle={{ opacity: 0, scaleX: 0.85, scaleY: 0.75 }} style={{ opacity: spring(1, { damping: 35, stiffness: 400 }), scaleX: spring(1, { damping: 35, stiffness: 400 }), scaleY: spring(1, { damping: 35, stiffness: 400 }) }}>
         {({ opacity, scaleX, scaleY }) => (
-          <div className='composer--warning' style={{ opacity: opacity, transform: `scale(${scaleX}, ${scaleY})` }}>
+          <div className='compose-form__warning' style={{ opacity: opacity, transform: `scale(${scaleX}, ${scaleY})` }}>
             {message}
           </div>
         )}