Skip to content
Snippets Groups Projects
Commit df98e021 authored by Art Lowel's avatar Art Lowel
Browse files

Replaced row class with custom mixin, as using row to offset gutter widths has...

Replaced row class with custom mixin, as using row to offset gutter widths has side-effects in newer versions of bootstrap
parent 71c1e3a5
No related branches found
No related tags found
No related merge requests found
<!--.row to offset the app component's .container-fluid padding-->
<div class="row">
<div class="jumbotron jumbotron-fluid">
<div class="container-fluid">
<h1 class="display-3">Welcome to DSpace</h1>
<p class="lead">DSpace is an open source software platform that enables organisations to:</p>
<ul>
<li>capture and describe digital material using a submission workflow module, or a variety
of
programmatic ingest options
</li>
<li>distribute an organisation's digital assets over the web through a search and retrieval
system
</li>
<li>preserve digital assets over the long term</li>
</ul>
</div>
<div class="jumbotron jumbotron-fluid">
<div class="container-fluid">
<h1 class="display-3">Welcome to DSpace</h1>
<p class="lead">DSpace is an open source software platform that enables organisations to:</p>
<ul>
<li>capture and describe digital material using a submission workflow module, or a variety
of
programmatic ingest options
</li>
<li>distribute an organisation's digital assets over the web through a search and retrieval
system
</li>
<li>preserve digital assets over the long term</li>
</ul>
</div>
</div>
@import '../../../styles/mixins.scss';
:host {
display: block;
@include negate-gutters();
}
@import './variables.scss';
@import '../../node_modules/bootstrap/scss/variables';
@import '../../node_modules/bootstrap/scss/mixins';
@mixin negate-gutters($gutters: $grid-gutter-widths) {
@each $breakpoint in map-keys($gutters) {
@include media-breakpoint-up($breakpoint) {
$gutter: map-get($gutters, $breakpoint);
margin-right: ($gutter / -2);
margin-left: ($gutter / -2);
}
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment