30 lines
606 B
SCSS
30 lines
606 B
SCSS
@import './variables';
|
|
|
|
.esh-app {
|
|
&-footer {
|
|
$margin: 2.5rem;
|
|
$padding: 2.5rem;
|
|
|
|
background-color: $color-background-darker;
|
|
border-top: $border-light solid $color-foreground-bright;
|
|
margin-top: $margin;
|
|
padding-bottom: $padding;
|
|
padding-top: $padding;
|
|
width: 100%;
|
|
|
|
$height: 50px;
|
|
|
|
&-brand {
|
|
height: $height;
|
|
width: 230px;
|
|
}
|
|
|
|
&-text {
|
|
color: $color-secondary;
|
|
line-height: $height;
|
|
text-align: right;
|
|
width: 100%;
|
|
}
|
|
}
|
|
}
|