Skip to content

Commit e5928e6

Browse files
bencodezenthePunderWoman
authored andcommitted
docs: resolve extra padding on tutorial editor (angular#54828)
As of this commit, there is a visual discrepancy between the height of the content on the left compared to the separator and editors on the right. It appears that the cause of this is an additional computation of layout padding which is unnecessary for these particular elements. PR Close angular#54828
1 parent 01172b8 commit e5928e6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

adev/src/app/features/tutorial/tutorial.component.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ $column-width: calc(50% - #{$resizer-width} - var(--layout-padding));
105105
margin-block-start: var(--layout-padding);
106106
cursor: col-resize;
107107
align-self: stretch;
108-
height: var(--fixed-content-height);
108+
height: 100vh;
109109

110110
&::before {
111111
content: '';
@@ -133,7 +133,7 @@ $column-width: calc(50% - #{$resizer-width} - var(--layout-padding));
133133
width: 100%;
134134
min-width: 300px;
135135
padding-block-start: var(--layout-padding);
136-
height: var(--fixed-content-height);
136+
height: 100vh;
137137
}
138138

139139
.adev-split-tutorial {

0 commit comments

Comments
 (0)