Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: fixed testimonial #29

Merged
merged 2 commits into from
Oct 22, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions src/components/Card/carouselcard.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ The css colors have to be updated with tailwind utility colors
*/
.lil-carousel-card {
/*Fixed width for lg and xl screens*/
@apply lil-rounded-xl lil-w-full lil-bg-white lil-items-center lil-overflow-auto lil-shadow-xl lil-outline-none;
@apply lil-rounded-xl lil-w-full lil-bg-white lil-items-center lil-shadow-xl lil-outline-none;
}

.lil-carousel-card .lil-carousel-card-review {
Expand All @@ -19,11 +19,11 @@ The css colors have to be updated with tailwind utility colors
}

.lil-carousel-card-review > .lil-carousel-card-review-content {
@apply lil-text-s-24 lil-text-font-200 lil-whitespace-normal lil-px-8 lil-py-4 lil-text-left;
@apply lil-text-s-20 lil-whitespace-normal lil-px-8 lil-py-4 lil-text-left lil-text-font-200 lil-font-medium;
}

.lil-carousel-card > .lil-carousel-card-footer {
@apply lil-flex lil-justify-between lil-items-center lil-px-6 lil-mt-2 lil-mb-6;
.lil-carousel-card .lil-carousel-card-footer {
@apply lil-flex lil-justify-between lil-items-center lil-px-6 lil-mt-2;
}

.lil-carousel-card-footer .lil-carousel-card-footer-image {
Expand All @@ -49,7 +49,7 @@ The css colors have to be updated with tailwind utility colors
}

.lil-carousel-card-review > .lil-carousel-card-review-content {
@apply lil-text-font-200 lil-text-base lil-whitespace-normal lil-px-6 lil-py-4 lil-text-left;
@apply lil-text-base lil-whitespace-normal lil-px-6 lil-py-4 lil-text-left;
}

.lil-carousel-card-footer .lil-carousel-card-footer-image {
Expand All @@ -63,7 +63,7 @@ The css colors have to be updated with tailwind utility colors

@screen sm {
.lil-carousel-card {
@apply lil-min-w-full;
@apply lil-w-full;
}
.lil-carousel-card .lil-carousel-card-review {
@apply lil-w-full;
Expand All @@ -74,15 +74,15 @@ The css colors have to be updated with tailwind utility colors
}

.lil-carousel-card > .lil-carousel-card-footer {
@apply lil-flex lil-justify-between lil-flex-wrap lil-items-center lil-px-6 lil-mt-4 lil-mb-6;
@apply lil-flex lil-justify-between lil-flex-wrap lil-items-center lil-px-6 lil-mt-4;
}

.lil-carousel-card-review > .lil-carousel-card-review-heading {
@apply lil-text-s-20 lil-font-bold lil-px-6 lil-py-4 lil-whitespace-normal lil-text-font-500;
}

.lil-carousel-card-review > .lil-carousel-card-review-content {
@apply lil-text-base lil-whitespace-normal lil-px-6 lil-py-4 lil-text-left lil-text-font-200;
@apply lil-text-base lil-whitespace-normal lil-px-6 lil-py-4 lil-text-left;
}

.lil-carousel-card-footer .lil-carousel-card-footer-image {
Expand Down