15 lines
380 B
CSS
15 lines
380 B
CSS
/* Hide Call / SMS / WhatsApp text labels on mobile, keep icons only */
|
|
@media (max-width: 767.98px) {
|
|
.o_phone_form_link > small,
|
|
.o_field_phone_sms > small,
|
|
.o_field_phone_whatsapp > small {
|
|
display: none !important;
|
|
}
|
|
|
|
.o_phone_form_link,
|
|
.o_field_phone_sms,
|
|
.o_field_phone_whatsapp {
|
|
margin-inline-start: 0.5rem !important;
|
|
}
|
|
}
|