mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-18 13:39:41 -04:00
29 lines
674 B
SCSS
29 lines
674 B
SCSS
@import "../../settings/all";
|
|
@import "../../tools/all";
|
|
@import "../../helpers/all";
|
|
|
|
@include govuk-exports("govuk/component/inset-text") {
|
|
.govuk-inset-text {
|
|
@include govuk-font($size: 19);
|
|
@include govuk-text-colour;
|
|
padding: govuk-spacing(3);
|
|
// Margin top intended to collapse
|
|
// This adds an additional 10px to the paragraph above
|
|
@include govuk-responsive-margin(6, "top");
|
|
@include govuk-responsive-margin(6, "bottom");
|
|
|
|
clear: both;
|
|
|
|
border-left: $govuk-border-width-wide solid $govuk-border-colour;
|
|
|
|
> :first-child {
|
|
margin-top: 0;
|
|
}
|
|
|
|
> :only-child,
|
|
> :last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
}
|