We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98cae24 commit 9c458dcCopy full SHA for 9c458dc
assets/sass/expander.scss
@@ -45,6 +45,13 @@
45
46
.o-expander__content {
47
padding: 1.2rem;
48
+
49
+ // Remove margins from last elements of expander (up to 3 levels deep)
50
+ & > *:last-child,
51
+ & > *:last-child > *:last-child,
52
+ & > *:last-child > *:last-child > *:last-child {
53
+ margin-bottom: 0;
54
+ }
55
}
56
57
.details-print {
assets/sass/textHighlight.scss
@@ -5,6 +5,12 @@
5
border-radius: var(--border-radius-m);
6
border-left: var(--bg-neutral) solid 1rem;
7
8
+ // Remove margins from last elements of expander (up to 2 levels deep)
9
10
+ & > *:last-child > *:last-child {
11
12
13
14
@media print {
15
page-break-inside: avoid;
16
0 commit comments