revert previous commits apply 100vw only to .index, apply max 50vw to .page content

This commit is contained in:
jorge 2021-07-28 09:56:49 +02:00
parent 0f8ecd621a
commit 3f860c2be1
2 changed files with 12 additions and 15 deletions

File diff suppressed because one or more lines are too long

View File

@ -44,12 +44,7 @@ main {
section { section {
padding: $global-padding $global-padding*2; padding: $global-padding $global-padding*2;
} }
.omekas-entry-content { .entry-content,.omekas-entry-content {
@include xy-cell(12);
.blocks {
}
}
.entry-content {
@include breakpoint(small){ @include breakpoint(small){
@include xy-cell(12); @include xy-cell(12);
padding: $global-padding*2 ; padding: $global-padding*2 ;
@ -76,22 +71,24 @@ main {
// //
// page category // page category
//-------------- //--------------
.page{ .index{
main { main {
article { article {
@include xy-grid-container(1200);
header { header {
.entry-title { .entry-title {
} }
} }
section { section {
@include xy-cell(12);
} }
.omekas-entry-content { .entry-content,.omekas-entry-content {
.blocks { @include breakpoint(small){
} }
} @include breakpoint(medium){
.entry-content { max-width: unset;
}
@include breakpoint(xlarge){
max-width: unset;
}
} }
} }
} }