27 lines
425 B
SCSS
27 lines
425 B
SCSS
@use '../apps/red-ui/src/assets/styles/variables';
|
|
@use 'mixin';
|
|
|
|
.portal-footer,
|
|
.site-footer {
|
|
border-top: 1px solid variables.$grey-4;
|
|
padding: 0;
|
|
|
|
&.portal-footer {
|
|
margin-top: 100px;
|
|
}
|
|
|
|
.inner {
|
|
margin: 0;
|
|
padding: 8px 0 64px 0;
|
|
@include mixin.paragraph;
|
|
|
|
> * {
|
|
padding: 0;
|
|
}
|
|
|
|
.copyright {
|
|
width: 50%;
|
|
}
|
|
}
|
|
}
|