forked from hazza/dspace-angular
17 lines
370 B
SCSS
17 lines
370 B
SCSS
@import '../../../styles/variables.scss';
|
|
@import '../../../../node_modules/bootstrap/scss/_variables.scss';
|
|
$footer-bg: $gray-lighter;
|
|
$footer-border: 1px solid darken($footer-bg, 10%);
|
|
$footer-padding: $spacer * 1.5;
|
|
|
|
.footer {
|
|
background-color: $footer-bg;
|
|
border-top: $footer-border;
|
|
text-align: center;
|
|
padding: $footer-padding;
|
|
|
|
p {
|
|
margin: 0;
|
|
}
|
|
}
|