Skip to content

Commit

Permalink
css
Browse files Browse the repository at this point in the history
  • Loading branch information
Janaka-Steph committed Aug 24, 2023
1 parent 50e0e84 commit 640b5c8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
8 changes: 3 additions & 5 deletions src/assets/css/misc.css
Original file line number Diff line number Diff line change
Expand Up @@ -61,13 +61,11 @@ svg.warning-icon {
}

.right-general-card span {
@apply text-grey-300 md:text-base text-sm md:w-1/2 min-w-[45%];
word-wrap: break-word;
@apply text-grey-300 md:text-base text-sm md:w-1/2 min-w-[45%] break-words;
}

.right-general-card__list li {
word-wrap: break-word;
@apply text-grey-300 md:text-base text-sm;
@apply text-grey-300 text-sm md:text-base break-words;
}

.right-general-card__list {
Expand Down Expand Up @@ -127,7 +125,7 @@ svg.warning-icon {
}

.share-chat__btn {
@apply bg-grey-600 py-3 px-4 max-md:px-[11px] max-md:py-2 rounded-md md:text-lg text-sm max-md:text-[12px] text-white;
@apply bg-grey-600 py-2 md:py-3 px-3 md:px-4 rounded-md md:text-lg text-sm max-md:text-[12px] text-white;
}

.setting__btn {
Expand Down
2 changes: 1 addition & 1 deletion src/assets/css/service.css
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ p.service-is__not-running {

.service-card h3 {
letter-spacing: 0.035em;
@apply md:text-lg max-md:text-sm text-base font-bold leading-[25px] text-grey-300;
@apply text-sm md:text-lg font-bold leading-[25px] text-grey-300;
}

.service-card p {
Expand Down
2 changes: 1 addition & 1 deletion src/modules/service/components/Service.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ const Service = () => {
const filteredServices = services.filter((service) => service.interfaces.includes(app.id));
return (
<div key={app.id} className="mt-10">
<h3 className="text-grey-300 font-bold md:text-xl max-md:text-sm text-base flex md:mb-5 mb-[13px]">
<h3 className="text-grey-300 font-bold text-sm md:text-xl flex md:mb-5 mb-[13px]">
{app.name}
</h3>
<div className="flex gap-[22px] flex-wrap ">
Expand Down

0 comments on commit 640b5c8

Please sign in to comment.