Merge pull request #15694 from sumaiya2908/portal-fixes

fix: padding and bg for portals
This commit is contained in:
mergify[bot] 2022-01-24 12:11:42 +00:00 committed by GitHub
commit 3ddb489116
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 8 deletions

View file

@ -31,12 +31,6 @@
@import 'my_account';
body {
@include media-breakpoint-up(sm) {
background-color: var(--bg-color);
}
}
.ql-editor.read-mode {
padding: 0;
line-height: 1.6;

View file

@ -1,7 +1,8 @@
//styles for my account and edit-profile page
@include media-breakpoint-up(sm) {
body[data-path="me"],
body[data-path="list"] {
body[data-path="list"],
body[data-path="update-profile"] {
background-color: var(--bg-color);
}
}

View file

@ -6,7 +6,7 @@
.breadcrumb-container.container {
@include media-breakpoint-up(sm) {
padding-left: var(--padding-sm);
padding-left: 0;
}
}