diff --git a/app/soapbox/features/public_layout/components/header.tsx b/app/soapbox/features/public_layout/components/header.tsx index 1878a2027..585d25db6 100644 --- a/app/soapbox/features/public_layout/components/header.tsx +++ b/app/soapbox/features/public_layout/components/header.tsx @@ -10,7 +10,7 @@ import { useAppSelector, useFeatures, useSoapboxConfig } from 'soapbox/hooks'; import { openModal } from '../../../actions/modals'; import { Button, Form, HStack, IconButton, Input, Tooltip } from '../../../components/ui'; -import Pulse from './pulse'; +import Sonar from './sonar'; import type { AxiosError } from 'axios'; @@ -73,7 +73,7 @@ const Header = () => {
- +
Logo diff --git a/app/soapbox/features/public_layout/components/pulse.tsx b/app/soapbox/features/public_layout/components/sonar.tsx similarity index 62% rename from app/soapbox/features/public_layout/components/pulse.tsx rename to app/soapbox/features/public_layout/components/sonar.tsx index ad8171ae8..7087113c9 100644 --- a/app/soapbox/features/public_layout/components/pulse.tsx +++ b/app/soapbox/features/public_layout/components/sonar.tsx @@ -1,14 +1,14 @@ import React from 'react'; -const Pulse = () => ( +const Sonar = () => (
-
-
-
-
+
+
+
+
); -export default Pulse; +export default Sonar; diff --git a/tailwind.config.js b/tailwind.config.js index cafcbd52a..70278445b 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -48,25 +48,25 @@ module.exports = { 'bg-shape-2': true, }), animation: { - 'pulse-scale-4': 'pulse-scale-4 3s linear infinite', - 'pulse-scale-3': 'pulse-scale-3 3s 0.5s linear infinite', - 'pulse-scale-2': 'pulse-scale-2 3s 1s linear infinite', - 'pulse-scale-1': 'pulse-scale-1 3s 1.5s linear infinite', + 'sonar-scale-4': 'sonar-scale-4 3s linear infinite', + 'sonar-scale-3': 'sonar-scale-3 3s 0.5s linear infinite', + 'sonar-scale-2': 'sonar-scale-2 3s 1s linear infinite', + 'sonar-scale-1': 'sonar-scale-1 3s 1.5s linear infinite', }, keyframes: { - 'pulse-scale-4': { + 'sonar-scale-4': { from: { opacity: '0.4' }, to: { opacity: 0, transform: 'scale(4)' }, }, - 'pulse-scale-3': { + 'sonar-scale-3': { from: { opacity: '0.4' }, to: { opacity: 0, transform: 'scale(3.5)' }, }, - 'pulse-scale-2': { + 'sonar-scale-2': { from: { opacity: '0.4' }, to: { opacity: 0, transform: 'scale(3)' }, }, - 'pulse-scale-1': { + 'sonar-scale-1': { from: { opacity: '0.4' }, to: { opacity: 0, transform: 'scale(2.5)' }, },