@@ -873,6 +873,8 @@ class EmbeddedTemplate extends Component<typeof Deal> {
873
873
</div >
874
874
</article >
875
875
876
+ {{! template-lint-disable no-whitespace-for-layout }}
877
+ {{! ignore the above error because ember-template-lint complains about the whitespace in the multi-line comment below }}
876
878
<style scoped >
877
879
h1 ,
878
880
p {
@@ -929,7 +931,7 @@ class EmbeddedTemplate extends Component<typeof Deal> {
929
931
grid-template-rows : max-content auto ;
930
932
gap : var (--boxel-sp-xs );
931
933
padding : var (--boxel-sp-xs );
932
- container-type : inline-size; /* Enable container queries */
934
+ container-type : inline-size;
933
935
}
934
936
.deal-header {
935
937
grid-area : deal-header;
@@ -1023,7 +1025,7 @@ class EmbeddedTemplate extends Component<typeof Deal> {
1023
1025
margin-top : var (--boxel-sp-lg );
1024
1026
}
1025
1027
.deal-details {
1026
- grid-template-columns : 1fr 1fr ; /* Switch to 2 items per row */
1028
+ grid-template-columns : 1fr 1fr ;
1027
1029
gap : var (--boxel-sp );
1028
1030
}
1029
1031
.deal-details :deep(.progress-bar ) {
@@ -1194,7 +1196,7 @@ class FittedTemplate extends Component<typeof Deal> {
1194
1196
.highlight-value {
1195
1197
font-weight : 600 ;
1196
1198
font-size : var (--boxel-font-size );
1197
- white-space : nowrap ; /* Added globally */
1199
+ white-space : nowrap ;
1198
1200
}
1199
1201
.progress-container {
1200
1202
display : flex ;
@@ -1266,7 +1268,7 @@ class FittedTemplate extends Component<typeof Deal> {
1266
1268
grid-area : deal-details;
1267
1269
display : grid ;
1268
1270
grid-template-rows : auto ;
1269
- grid-template-columns : max-content max-content max-content ; /* 3 items per row initially */
1271
+ grid-template-columns : max-content max-content max-content ;
1270
1272
gap : var (--boxel-sp-xl );
1271
1273
}
1272
1274
@@ -1317,7 +1319,7 @@ class FittedTemplate extends Component<typeof Deal> {
1317
1319
display : none ;
1318
1320
}
1319
1321
.deal-details {
1320
- grid-template-columns : 1fr 1fr ; /* Switch to 2 items per row */
1322
+ grid-template-columns : 1fr 1fr ;
1321
1323
}
1322
1324
1323
1325
/* Ensure that the first two fields appear in row 1 */
0 commit comments