fix(ui): fixed tags overflow in card + port correction in README

pull/600/head
piyushchhabra 1 year ago
parent 17647587f9
commit 5aa367fe54

@ -8,7 +8,7 @@ Please ensure you have Docker and Docker Compose installed for your OS.
- `CD` into the repo
- run command `docker-compose -f docker-compose.dev.yml up --build --force-recreate`
- Visit localhost:3000 and the website should be live
- Visit localhost:8080 and the website should be live
### Steps to shutdown this Docker compose

@ -10,7 +10,7 @@ export type CardTitleProps = {
export const CardTitle = ({ children, className, subTitle }: CardTitleProps) => (
<div
className={twMerge(
'px-6 py-4 mb-5 font-sans text-lg font-normal border-b border-mineshaft-600',
'px-6 py-4 mb-5 font-sans text-lg font-normal border-b border-mineshaft-600 break-words',
className
)}
>

@ -76,7 +76,7 @@ export const DeleteActionModal = ({
<form>
<FormControl
label={
<div className="pb-2 text-sm">
<div className="pb-2 text-sm break-words">
Type <span className="font-bold">{deleteKey}</span> to delete the resource
</div>
}

Loading…
Cancel
Save