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 833368f commit 484f470Copy full SHA for 484f470
src/lib/core/overlay/position/global-position-strategy.ts
@@ -19,13 +19,13 @@ export class GlobalPositionStrategy implements PositionStrategy {
19
/** Array of individual applications of translateY(). Currently only for centering. */
20
private _translateY: string[] = [];
21
22
- /** Sets the element to usee CSS position: fixed */
+ /** Sets the element to use CSS position: fixed */
23
fixed() {
24
this._cssPosition = 'fixed';
25
return this;
26
}
27
28
- /** Sets the element to usee CSS position: absolute. This is the default. */
+ /** Sets the element to use CSS position: absolute. This is the default. */
29
absolute() {
30
this._cssPosition = 'absolute';
31
0 commit comments