Remove unnecessary break-all

This commit is contained in:
Dane Everitt 2020-10-11 12:34:48 -07:00
parent c6d6221711
commit 2f5e080074
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
4 changed files with 5 additions and 5 deletions

View file

@ -15,7 +15,7 @@ import setServerAllocationNotes from '@/api/server/network/setServerAllocationNo
import useFlash from '@/plugins/useFlash';
import { ServerContext } from '@/state/server';
const Code = styled.code`${tw`font-mono py-1 px-2 bg-neutral-900 rounded text-sm inline-block break-all`}`;
const Code = styled.code`${tw`font-mono py-1 px-2 bg-neutral-900 rounded text-sm inline-block`}`;
const Label = styled.label`${tw`uppercase text-xs mt-1 text-neutral-400 block px-1 select-none transition-colors duration-150`}`;
interface Props {