fix(PublicPage): capitalize some user controlled content

This commit is contained in:
Matthieu Bessat 2020-08-27 12:14:57 +02:00
parent 841a8610b1
commit 42232c8df9

View file

@ -480,6 +480,13 @@ section {
opacity: 0.75; opacity: 0.75;
} }
.schedule-category-name {
/*
may mess up some content
*/
text-transform: capitalize;
}
.schedule-category-collapse-icon { .schedule-category-collapse-icon {
transform: rotate(180deg); transform: rotate(180deg);
color: #B12008; color: #B12008;
@ -579,14 +586,29 @@ section {
.pricing-label { .pricing-label {
font-size: 1.5em; font-size: 1.5em;
/*
may mess up some content
*/
text-transform: capitalize;
} }
.pricing-name { .pricing-name {
font-size: 1.8em; font-size: 1.8em;
/*
may mess up some content
*/
text-transform: capitalize;
} }
.pricing-description { .pricing-description {
opacity: 0.9; opacity: 0.9;
/*
may mess up some content
*/
text-transform: capitalize;
} }
/* ***************************************************************************** /* *****************************************************************************
@ -743,6 +765,11 @@ People cards
.people-role { .people-role {
opacity: .8; opacity: .8;
/*
may mess up some content
*/
text-transform: capitalize;
} }
.people-contact-icon { .people-contact-icon {