[Legacy] Activity Stream Mobile Styling Fixes

This commit is contained in:
balumahendran 2022-03-28 09:22:35 +05:30 committed by Clemente Raposo
parent c18cf67c48
commit a86e80f303
2 changed files with 40 additions and 0 deletions

View file

@ -179,4 +179,5 @@
@import '../suitep-base/sales-settings-mobile.scss';
@import '../suitep-base/history-subpanel-mobile.scss';
@import '../suitep-base/maps-quickradius.scss';
@import '../suitep-base/activity-stream-mobile.scss';
//

View file

@ -0,0 +1,39 @@
@media (max-width: 750px) {
.activity-stream {
.moduleTitle {
width: 100%;
padding-bottom: 2.5em;
}
.action-button {
margin-top: 2.5em;
}
table.view {
tr td {
display: inline;
}
}
.edit tr {
border-bottom: none;
}
}
}
@media (min-width: 750px) and (max-width: 767px) {
.activity-stream {
.moduleTitle {
width: 100%;
padding-bottom: 2.5em;
}
.action-button {
margin-top: 2.5em;
}
table.view {
tr td {
display: inline;
}
}
.edit tr {
border-bottom: none;
}
}
}