-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
37e2173
commit 1781298
Showing
9 changed files
with
111 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 15 additions & 2 deletions
17
libs/components/pages/src/lib/modules/page-header/page-header-alerts.component.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 19 additions & 3 deletions
22
libs/components/pages/src/lib/modules/page-header/page-header-avatar.component.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,32 @@ | ||
@use 'libs/components/theme/src/lib/styles/mixins' as mixins; | ||
@use 'libs/components/theme/src/lib/styles/compat-tokens-mixins' as compatMixins; | ||
|
||
@include compatMixins.sky-default-host-overrides() { | ||
--sky-override-page-header-avatar-space-above: 5px; | ||
--sky-override-page-header-avatar-space-right-sm: var(--sky-margin-inline-lg); | ||
--sky-override-page-header-avatar-space-right-xs: var(--sky-margin-inline-sm); | ||
} | ||
|
||
:host { | ||
display: block; | ||
|
||
&:not(:empty) { | ||
padding-top: 5px; | ||
margin-right: var(--sky-margin-inline-sm); | ||
padding-top: var( | ||
--sky-override-page-header-avatar-space-above, | ||
var(--sky-space-stacked-xs) | ||
); | ||
margin-right: var( | ||
--sky-override-page-header-avatar-space-right-xs, | ||
var(--sky-space-inline-s) | ||
); | ||
} | ||
} | ||
|
||
@include mixins.sky-host-responsive-container-sm-min() { | ||
&:not(:empty) { | ||
margin-right: var(--sky-margin-inline-lg); | ||
margin-right: var( | ||
--sky-override-page-header-avatar-space-right-sm, | ||
var(--sky-space-inline-l) | ||
); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 10 additions & 1 deletion
11
libs/components/pages/src/lib/modules/page-header/page-header-details.component.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,16 @@ | ||
@use 'libs/components/theme/src/lib/styles/compat-tokens-mixins' as compatMixins; | ||
|
||
@include compatMixins.sky-default-host-overrides() { | ||
--sky-override-page-header-details-space-above: var(--sky-margin-stacked-sm); | ||
} | ||
|
||
:host { | ||
display: block; | ||
|
||
&:not(:empty) { | ||
margin-top: var(--sky-margin-stacked-sm); | ||
margin-top: var( | ||
--sky-override-page-header-details-space-above, | ||
var(--sky-space-stacked-s) | ||
); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters