38 lines
631 B
SCSS
38 lines
631 B
SCSS
@import '../apps/red-ui/src/assets/styles/variables';
|
|
@import 'mixin';
|
|
|
|
.portal-publications,
|
|
.featured-content-label {
|
|
display: none;
|
|
}
|
|
|
|
.portal-contents {
|
|
margin-top: 100px;
|
|
margin-bottom: 0;
|
|
|
|
.inner {
|
|
margin: 0;
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
grid-gap: 24px;
|
|
|
|
&::before {
|
|
content: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
.publication-contents {
|
|
@include card;
|
|
}
|
|
|
|
@media only screen and (max-width: 768px) {
|
|
.portal-contents .inner {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.publication-contents:first-child {
|
|
grid-column: auto;
|
|
}
|
|
}
|