File tree 3 files changed +12
-14
lines changed
3 files changed +12
-14
lines changed Original file line number Diff line number Diff line change @@ -136,7 +136,7 @@ export class Layout extends GlimmerComponent<LayoutSignature> {
136
136
{{yield to =' contentHeader' }}
137
137
</header >
138
138
{{#if ( has-block ' grid' ) }}
139
- <div class =' content-grid content-scroll-container ' >
139
+ <div class =' content-grid' >
140
140
{{yield to =' grid' }}
141
141
</div >
142
142
{{/if }}
@@ -168,6 +168,7 @@ export class Layout extends GlimmerComponent<LayoutSignature> {
168
168
flex-grow : 1 ;
169
169
display : grid ;
170
170
grid-template-rows : max-content 1fr ;
171
+ overflow-y : scroll ;
171
172
}
172
173
173
174
/* these help hide overlay button visibility through gaps during scroll */
@@ -208,12 +209,8 @@ export class Layout extends GlimmerComponent<LayoutSignature> {
208
209
}
209
210
.content-grid {
210
211
max-width : 100% ;
211
- padding-left : var (--layout-padding );
212
- padding-bottom : var (--layout-padding );
213
- }
214
- .content-scroll-container {
215
- padding-right : var (--layout-padding );
216
- overflow : auto ;
212
+ padding : var (--layout-padding );
213
+ padding-top : 0 ;
217
214
}
218
215
< /style >
219
216
</template >
Original file line number Diff line number Diff line change @@ -716,6 +716,10 @@ class CrmAppTemplate extends Component<typeof CrmApp> {
716
716
.crm-app.Deal {
717
717
--strip-view-min-width : 1fr ;
718
718
}
719
+ .crm-app.Task :deep(.content-grid ) {
720
+ padding-bottom : 0 ;
721
+ padding-right : 0 ;
722
+ }
719
723
< /style >
720
724
</template >
721
725
}
Original file line number Diff line number Diff line change @@ -136,7 +136,7 @@ export class Layout extends GlimmerComponent<LayoutSignature> {
136
136
{{yield to =' contentHeader' }}
137
137
</header >
138
138
{{#if ( has-block ' grid' ) }}
139
- <div class =' content-grid content-scroll-container ' >
139
+ <div class =' content-grid' >
140
140
{{yield to =' grid' }}
141
141
</div >
142
142
{{/if }}
@@ -168,6 +168,7 @@ export class Layout extends GlimmerComponent<LayoutSignature> {
168
168
flex-grow : 1 ;
169
169
display : grid ;
170
170
grid-template-rows : max-content 1fr ;
171
+ overflow-y : scroll ;
171
172
}
172
173
173
174
/* these help hide overlay button visibility through gaps during scroll */
@@ -208,12 +209,8 @@ export class Layout extends GlimmerComponent<LayoutSignature> {
208
209
}
209
210
.content-grid {
210
211
max-width : 100% ;
211
- padding-left : var (--layout-padding );
212
- padding-bottom : var (--layout-padding );
213
- }
214
- .content-scroll-container {
215
- padding-right : var (--layout-padding );
216
- overflow : auto ;
212
+ padding : var (--layout-padding );
213
+ padding-top : 0 ;
217
214
}
218
215
< /style >
219
216
</template >
You can’t perform that action at this time.
0 commit comments