Skip to content
Snippets Groups Projects
Commit 46930cb8 authored by bgm's avatar bgm Committed by shaneonabike
Browse files

Fix parts of Edit/New Contact on mobile (details and commPrefs)

parent a961ff76
No related branches found
No related tags found
No related merge requests found
...@@ -287,4 +287,31 @@ ...@@ -287,4 +287,31 @@
font-size: $font-size-base; font-size: $font-size-base;
font-weight: $crm-font-weight-bold; font-weight: $crm-font-weight-bold;
} }
// Tweaks for mobile devices
@media (max-device-width: $screen-sm-max) {
#contactDetails {
.contact_basic_information-section table,
.contact_basic_information-section table > tbody {
display: block;
}
.contact_basic_information-section tr {
display: flex;
flex-wrap: wrap;
}
}
#commPrefs {
table,
table > tbody {
display: block;
}
tr {
display: flex;
flex-wrap: wrap;
}
td {
max-width: 100%;
}
}
}
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment